Vin*_*nce 2 javascript php laravel vue.js
所以我最近只使用 Laravel 框架完成了我的项目。现在我已经完成了它,我想通过在不刷新布局页面的情况下刷新内容来将 vue.js 添加到我的项目中。而且我想将我的刀片文件转换为 vue 组件。我不知道怎么做,因为在我项目的每个部分,我有 4 个刀片文件,如索引、编辑、创建、显示,我不知道如何在组件中制作它,而且很难我因为我使用的是 laravel 集体形式,这就是为什么每次我向数据库添加一些条目时它都会刷新。我也是 vuejs 的新手。有人可以帮我解决这个问题吗?非常感谢。
我的文件夹目录是这样的。
-roadmap
---index.blade.php
---show.blade.php
---edit.blade.php
---create.blade.php
Run Code Online (Sandbox Code Playgroud)
这是我的一些代码。
路线图/index.blade.php
@extends('layouts.admin')
@section('content')
<meta name="csrf-token" content="{{ csrf_token() }}">
<!-- DATA TABLES -->
<script src="//code.jquery.com/jquery-1.12.3.js"></script>
<script src="//cdn.datatables.net/1.10.12/js/jquery.dataTables.min.js"></script>
<script src="https://cdn.datatables.net/1.10.12/js/dataTables.bootstrap.min.js"></script>
<link rel="stylesheet"href="https://cdn.datatables.net/1.10.12/css/dataTables.bootstrap.min.css">
<div><a class="btn btn-success" style="float:right" href="{{ route('roadmap.create') }}">Add Roadmap</a></div>
<table id="myTable" class="table table-hover">
<thead>
<tr>
<th scope="col">ID</th>
<th scope="col">Year Covered </th>
<th scope="col">Description</th>
<th scope="col">Date entered</th>
<th width="280px">Action</th>
</tr>
</thead>
<tbody>
@foreach ($roadmap as $data)
<tr>
<td>{{ $data->id }}</td>
<td>{{ $data->year}}</td>
<td>{{ $data->body}}</td>
<td>{{ $data->created_at}}</td>
<td>
<a href="/roadmap/{{$data->id}}/edit" class="btn btn-warning"><span class="glyphicon glyphicon-pencil"></span></a>
<a href="/roadmap/{{$data->id}}" class="btn btn-primary"><span class="glyphicon glyphicon-search"></span></a>
{!! Form::open(['method' => 'DELETE', 'route'=>['roadmap.destroy', $data->id], 'style'=> 'display:inline', 'onsubmit' => 'return confirm("Are you sure you want to delete?")']) !!}
{!! Form::button('<i class="fa fa-trash"></i>',['type'=>'submit', 'class'=> 'btn btn-danger']) !!}
{!! Form::close() !!}</td>
</tr>
@endforeach
</tbody>
</table>
<script>
$(document).ready(function() {
$('#myTable').DataTable();
} );
</script>
@endsection
Run Code Online (Sandbox Code Playgroud)
路线图控制器.php
<?php
namespace App\Http\Controllers;
use DB;
use Illuminate\Http\Request;
use App\Roadmap;
use Validator;
use Illuminate\Foundation\Validation\ValidatesRequests;
class RoadmapController extends Controller
{
/**
* Display a listing of the resource.
*
* @return \Illuminate\Http\Response
*/
public function index()
{
//
$roadmap = DB::table('roadmaps')->get();
return view('roadmap.index', ['roadmap' => $roadmap]);
}
/**
* Show the form for creating a new resource.
*
* @return \Illuminate\Http\Response
*/
public function create()
{
//
return view('roadmap.create');
}
/**
* Store a newly created resource in storage.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Http\Response
*/
public function store(Request $request)
{
//
request()->validate([
'year' =>['required', 'string', 'max:255', 'unique:roadmaps'],
'body' => ['required', 'string', 'max:255'],
]);
Roadmap::create($request->all());
return redirect()->route('roadmap.index')->with('success','Created successfully');
}
/**
* Display the specified resource.
*
* @param int $id
* @return \Illuminate\Http\Response
*/
public function show($id)
{
//
$roadmap = Roadmap::find($id);
return view('roadmap.show', compact('roadmap'));
}
/**
* Show the form for editing the specified resource.
*
* @param int $id
* @return \Illuminate\Http\Response
*/
public function edit($id)
{
//
$roadmap = Roadmap::find($id);
return view('roadmap.edit', compact('roadmap'));
}
/**
* Update the specified resource in storage.
*
* @param \Illuminate\Http\Request $request
* @param int $id
* @return \Illuminate\Http\Response
*/
public function update(Request $request, $id)
{
//
request()->validate([
'year' => 'required',
'body' => 'required',
]);
Roadmap::find($id)->update($request->all());
return redirect()->route('roadmap.index')->with('success',' Updated successfully');
}
/**
* Remove the specified resource from storage.
*
* @param int $id
* @return \Illuminate\Http\Response
*/
public function destroy($id)
{
//
Roadmap::find($id)->delete();
return redirect()->route('roadmap.index')->with('success','News deleted successfully');
}
}
Run Code Online (Sandbox Code Playgroud)
网页.php
//CRUD COLLECTIVE ROADMAP
Route::resource('roadmap', 'RoadmapController');
Run Code Online (Sandbox Code Playgroud)
Nit*_*mar 15
vue components在我们的laravel应用程序中有许多不同的方法。基本思路是执行SPA(Single Page Application),我会告诉你我是怎么做的。
Laravel 为我们的vuejs应用程序提供了基本的入口点。你可以在你的webpack.mix.js文件中看到。对于我使用的路线vue-router和rest apiCRUD 操作。所以你需要做以下设置:
npm install
npm install vue-router --save
npm run dev // To compile app.js and store into public folder
Run Code Online (Sandbox Code Playgroud)
在您的情况下,我将制作一个刀片文件,作为Vue应用程序的入口点。我会在路由中定义web.php
Route::get('/{view?}', 'HomeController@landing')->where('view', '(.*)')->name('landing');
Run Code Online (Sandbox Code Playgroud)
在HomeController我将简单地返回刀片视图
return view('landing')
Run Code Online (Sandbox Code Playgroud)
现在将使landing.blade.php:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>welcome.</title>
<meta name="description" content="Login Page">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="csrf-token" content="{{ csrf_token() }}">
</head>
<body>
<div id="website">
</div>
<script src="{{ mix('js/app.js') }}"></script>
</body>
</html>
Run Code Online (Sandbox Code Playgroud)
你必须csrf_token()在 meta 标签和divwith 中提及,id以便它可以vue-components在那里渲染。
现在我将在资源文件夹中router为vuejswill create创建一个文件router.js:
import Vue from 'vue';
import VueRouter from 'vue-router';
Vue.use(VueRouter);
export const router = new VueRouter({
mode: 'history',
routes:
[
{
path: '/',
component: Vue.component('welcome', () => import('./components/Welcome.vue')),
name: 'welcome',
},
{
path: '/roadmap',
component: Vue.component('roadmap-index', () => import('./components/Roadmap/index.vue')),
name: 'roadmap.index',
},
],
base: '/',
});
Run Code Online (Sandbox Code Playgroud)
休息你可以为Create,Update表格做。现在我们将配置我们的app.js文件存在于资源文件夹中:
/**
* First we will load all of this project's JavaScript dependencies which
* includes Vue and other libraries. It is a great starting point when
* building robust, powerful web applications using Vue and Laravel.
*/
require('./bootstrap');
import VueRouter from 'vue-router';
import {router} from "./routes";
import welcome from './components/Welcome';
window.Vue = require('vue');
Vue.use(VueRouter);
const layoutOne = new Vue({
el: '#website',
router: router,
render:h=>h(welcome)
});
Run Code Online (Sandbox Code Playgroud)
然后我将创建welcome作为入口点的组件vue-router,将创建一个welcome.vue文件:
<template>
<div>
<router-view></router-view>
</div>
</template>
<script>
export default {
name: "welcome",
}
</script>
<style lang="scss">
</style>
Run Code Online (Sandbox Code Playgroud)
现在我将为 CRUD 操作制作 API:
<?php
namespace App\Http\Controllers;
use DB;
use Illuminate\Http\Request;
use App\Roadmap;
use Validator;
use Illuminate\Foundation\Validation\ValidatesRequests;
class RoadmapController extends Controller
{
/**
* Display a listing of the resource.
*
* @return \Illuminate\Http\Response
*/
public function index()
{
//
$roadmap = DB::table('roadmaps')->get();
return response()->json(['roadmap' => $roadmap], 200);
}
/**
* Store a newly created resource in storage.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Http\Response
*/
public function store(Request $request)
{
//
request()->validate([
'year' =>['required', 'string', 'max:255', 'unique:roadmaps'],
'body' => ['required', 'string', 'max:255'],
]);
Roadmap::create($request->all());
return response()->json(['message' => 'Created successfully'], 200);
}
/**
* Display the specified resource.
*
* @param int $id
* @return \Illuminate\Http\Response
*/
public function show($id)
{
//
$roadmap = Roadmap::find($id);
return response()->json(['roadmap` => $roadmap],200);
}
/**
* Update the specified resource in storage.
*
* @param \Illuminate\Http\Request $request
* @param int $id
* @return \Illuminate\Http\Response
*/
public function update(Request $request, $id)
{
//
request()->validate([
'year' => 'required',
'body' => 'required',
]);
Roadmap::find($id)->update($request->all());
return response()->json(['message' => 'Updated successfully'], 200;;
}
/**
* Remove the specified resource from storage.
*
* @param int $id
* @return \Illuminate\Http\Response
*/
public function destroy($id)
{
//
Roadmap::find($id)->delete();
return response()->json(['message' => 'Deleted'], 200;;
}
}
Run Code Online (Sandbox Code Playgroud)
然后我会做 api api.php
Route::resource('roadmap', 'RoadmapController');
Run Code Online (Sandbox Code Playgroud)
现在唯一剩下的就是在我们的组件文件中调用这些 api 并按照我们的要求执行。
<template>
<table class="table table-hover">
<thead class="demo">
<tr>
<th>Roadmap</th> //Whatever you have headers
<th>Update</th>
<th>Delete</th>
</tr>
</thead>
<tbody>
<tr v-for="(item, index) in roadmaps">
<td>{{ item.name }}</td> // Whatever your data field is
<td @click="update(item)">Update</td>
<td @click="delete(item)"> Delete</td>
</tr>
</table>
</template>
<script>
export default {
data() {
return: {
roadmaps: [],
errors: ''
}
},
methods: {
fetchData() {
axios.get('api/roadmap).then(response => {
if(response.status === 200)
{
this.roadmaps = response.data
}
}).catch((error) => {
this.errors = error.response.data
})
},
update(item) {
this.$router.push({ name: update, params: { id: item.id}})
},
delete(item) {
axios.delete('api/roadmap/'+item.id).then(response => {
if(response.status === 200)
{
this.fetchData() // to refresh table..
}
}).catch((error) => {
this.errors = error.response.data
})
}
}
created() {
this.fetchData()
}
}
</script>
Run Code Online (Sandbox Code Playgroud)
我希望你有一个基本的想法来自己执行事情。可以找到很多教程:
https://laravel-news.com/using-vue-router-laravel
希望这可以帮助。干杯。
PS:您必须通过npm run dev或npm run watch完成编码后继续编译vue-component。代码可能不起作用或可能有错误。这只是为您提供开始的方向。
| 归档时间: |
|
| 查看次数: |
10417 次 |
| 最近记录: |