laravel5.3 vue 实现收藏夹功能实例详解

前端之家收集整理的这篇文章主要介绍了laravel5.3 vue 实现收藏夹功能实例详解前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

下面通过本文给大家介绍laravel5.3 vue 实现收藏夹功能,具体代码如下所述:

​1.0.2 修改 gulpfile.js

将原来的 require('laravel-elixir-vue'); 修改为 require('laravel-elixir-vue-2'); ​

{ mix.sass('app.scss') .webpack('app.js'); });

1.0.3 修改 resource/assets/js/app.js

将原来的 el: 'body' 改为 el: '#app' ​

1.1 安装npm 模块

(如果之前没有执行此操作) ​

npm install

1.2 创建模型及迁移

我们需要一个User模型(laravel附带),一个Post模型和一个Favorite模型以及它们各自的迁移文件。 因为我们之前创建过了 Post 的模型,所以我们只需要创建一个 Favorite 模型即可。 ​

PHP;"> PHP artisan make:model App\Models\Favorite -m

​​ 这会创建一个 Favorite

模型以及迁移文件。 ​

1.3 修改 posts 迁移表及 favorites 的 up 方法

给 posts 表在 id 字段后面新增一个 user_id 字段 ​

PHP;"> PHP artisan make:migration add_userId_to_posts_table --table=posts

修改 database/migrations/2018_01_18_145843_add_userId_to_posts_table.PHP

integer('user_id')->unsigned()->after('id'); }); } database/migrations/2018_01_18_142146_create_favorites_table.PHP ​ public function up() { Schema::create('favorites',function (Blueprint $table) { $table->increments('id'); $table->integer('user_id')->unsigned(); $table->integer('post_id')->unsigned(); $table->timestamps(); }); }

​ 该 favorites 表包含两列: ​

user_id 被收藏文章用户ID。

post_id 被收藏的帖子的ID。

​ 然后进行表迁移

PHP artisan migrate

1.4 用户认证

因为我们之前就已经创建过了,所以这里就不需要重复创建了。

如果你没有创建过用户认证模块,则需要执行 PHP artisan make:auth ​

2. 完成搜藏夹功能

修改 routes/web.PHP

2.1 创建路由器

middleware('auth');

2.2 文章用户之间多对多关系

由于用户可以将许多文章标记为收藏夹,并且一片文章可以被许多用户标记为收藏夹,所以用户与最收藏的文章之间的关系将是多对多的关系。要定义这种关系,请打开 User 模型并添加一个 favorites() ​ app/User.PHP

注意 post 模型的命名空间是 App\Models\Post 所以注意要头部引入 use App\Models\Post; ​

belongsToMany(Post::class,'favorites','user_id','post_id')->withTimeStamps(); }

​ 第二个参数是数据透视表(收藏夹)的名称。第三个参数是要定义关系(User)的模型的外键名称(user_id),而第四个参数是要加入的模型(Post)的外键名称(post_id)。 ​ 注意到我们链接withTimeStamps()到belongsToMany()。这将允许插入或更新行时,数据透视表上的时间戳(create_at和updated_at)列将受到影响。 ​ ​

2.3 创建文章控制器

因为我们之前创建过了,这里也不需要创建了。

如果你没有创建过,请执行 PHP artisan make:controller ArticleController ​

2.4 在文章控制器添加 favoritePost 和 unFavoritePost 两个方法

注意要头部要引入 use Illuminate\Support\Facades\Auth; ​

PHP;"> favorites()->attach($post->id); return back(); } public function unFavoritePost(Post $post) { Auth::user()->favorites()->detach($post->id); return back(); } }

​2.5 集成 axios 模块

•安装axios ​

npm install axios --save

​•引入axios模块 resource/assets/js/bootstrap.js 在最后加入 ​

PHP;"> import axios from 'axios'; window.axios = axios;

2.6 创建收藏夹组件

PHP;"> // resources/assets/js/components/Favorite.vue

2.7 视图中引入组件

在视图组件使用之前,我们先引入字体文件 resource/views/layouts/app.blade.PHP 头部引入字体文件

PHP;">

​ 并在 app.blade.PHP 添加 我的收藏夹 链接

PHP;"> // 加在logout-form之后
logout-form" action="{{ url('/logout') }}" method="POST" style="display: none;"> {{ csrf_field() }}
我的收藏夹

​ 使用组件 ​

PHP;"> // resources/views/home/article/index.blade.PHP​ if (Auth::check())

endif

​ 然后我们要创建 favorited() 打开 app/Models/Post.PHP 增加 favorited() 方法

注意要在头部引用命名空间 use App\Models\Favorite; use Illuminate\Support\Facades\Auth; ​

where('post_id',$this->id) ->first(); }​

2.8 使用组件

引入 Favorite.vue 组件 resources/assets/js/app.js ​

PHP;"> Vue.component('favorite',require('./components/Favorite.vue'));

编译

PHP;"> npm run dev

效果图 ​

3. 完成 我的收藏夹

3.1 创建用户控制器​

PHP;"> PHP artisan make:controller UsersController

修改

PHP;"> app/Http/Controllers/UsersController.PHPfavorites; return view('users.my_favorites',compact('myFavorites')); } }

添加视图文件

PHP;"> // resources/views/users/my_favorites.blade.PHP ​ extends('layouts.app') ​ @section('content')
My Favorites
@forelse ($myFavorites as $myFavorite)
{{ $myFavorite->title }}
@if (Auth::check()) @endif
@empty

You have no favorite posts.

@endforelse
@endsection

​ 然后重新向一下根目录 routes/web.PHP 添加一条路由 ​

PHP;"> Route::get('/','ArticleController@index');

最后效果

总结

以上所述是小编给大家介绍的laravel5.3 vue 实现收藏夹功能,希望对大家有所帮助,如果大家有任何疑问欢迎给我留言,小编会及时回复大家的!

原文链接:https://www.f2er.com/vue/34105.html

猜你在找的Vue相关文章