首頁  >  文章  >  web前端  >  laravel5.3 vue 實作收藏夾功能

laravel5.3 vue 實作收藏夾功能

小云云
小云云原創
2018-01-24 10:42:571973瀏覽

本文主和大家介紹laravel5.3 vue 實現收藏夾功能,本文透過實例代碼給大家介紹的非常詳細,需要的朋友可以參考下,希望能幫助到大家。

以下透過本文介紹laravel5.3 vue 實作收藏功能,具體程式碼如下所述:

{
 "private": true,
 "scripts": {
 "prod": "gulp --production",
 "dev": "gulp watch"
 },
 "devDependencies": {
 "bootstrap-sass": "^3.3.7",
 "gulp": "^3.9.1",
 "jquery": "^3.1.0",
 "laravel-elixir": "^6.0.0-14",
 "laravel-elixir-vue-2": "^0.2.0",
 "laravel-elixir-webpack-official": "^1.0.2",
 "lodash": "^4.16.2",
 "vue": "^2.0.1",
 "vue-resource": "^1.0.3"
 }
}

1.0.2 修改gulpfile.js

#將原先的require('laravel-elixir-vue'); 修改為require('laravel-elixir-vue-2');  

const elixir = require('laravel-elixir');
require('laravel-elixir-vue-2');
/*
 |--------------------------------------------------------------------------
 | Elixir Asset Management
 |--------------------------------------------------------------------------
 |
 | Elixir provides a clean, fluent API for defining some basic Gulp tasks
 | for your Laravel application. By default, we are compiling the Sass
 | file for our application, as well as publishing vendor resources.
 |
 */
elixir(mix => {
 mix.sass('app.scss')
 .webpack('app.js');
});

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

將原來的el: 'body' 改為el: '#app'  

const app = new Vue({
 el: '#app'
});

1.1 安裝npm 模組

#(如果之前沒有執行此操作)

npm  install

 

1.2 建立模型及遷移

我們需要一個User模型(laravel附帶),一個Post模型和一個Favorite模型以及它們各自的遷移檔案。 因為我們之前創建過了 Post 的模型,所以我們只需要創建一個 Favorite 模型。  

php artisan make:model App\Models\Favorite -m

 

這會建立一個 Favorite

模型以及遷移檔案。

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

給posts 表在id 欄位後面新增一個user_id 欄位 

php artisan make:migration add_userId_to_posts_table --table=posts

修改database/migrations/2018_01_18_#

public function up()
 {
 Schema::table('posts', function (Blueprint $table) {
  $table->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();
 });
 }

修改database/migrations/2018_01_18_#
Auth::routes();
Route::post('favorite/{post}', 'ArticleController@favoritePost');
Route::post('unfavorite/{post}', 'ArticleController@unFavoritePost');
Route::get('my_favorites', 'UsersController@myFavorites')->middleware('auth');
修改database/migrations/2018_01_18_145843__user .php


public function favorites()
 {
 return $this->belongsToMany(Post::class, 'favorites', 'user_id', 'post_id')->withTimeStamps();
 }
此favorites 表格包含兩個欄位:  


user_id 被收藏文章的使用者ID。

post_id 被收藏的貼文的ID。

然後進行表格遷移

php artisan migrate

1.4 使用者認證

因為我們之前就已經建立過了,所以這裡就不需要重複創建了。

如果你沒有建立過使用者認證模組,你需要執行php artisan make:auth

2.完成搜藏夾功能

修改routes/web.php

2.1 建立路由器

<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use App\Models\Post;
use Illuminate\Support\Facades\Auth;
class ArticleController extends Controller
{
 public function index()
 {
 $data = Post::paginate(5);
 return view(&#39;home.article.index&#39;, compact(&#39;data&#39;));
 }
 public function show($id)
 {
 $data = Post::find($id);
 return view(&#39;home.article.list&#39;, compact(&#39;data&#39;));
 }
 public function favoritePost(Post $post)
 {
 Auth::user()->favorites()->attach($post->id);
 return back();
 }
 public function unFavoritePost(Post $post)
 {
 Auth::user()->favorites()->detach($post->id);
 return back();
 }
}

2.2 文章和使用者之間多對多關係

由於使用者可以將許多文章標記為收藏夾,並且一片文章可以被許多使用者標記為收藏夾,所以用戶與最收藏的文章之間的關係將是多對多的關係。要定義這種關係,請開啟User 模型並新增一個favorites()  app/User.php

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

import axios from 'axios';
window.axios = axios;

第二個參數是資料透視表(收藏夾)的名稱。第三個參數是要定義關係(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;

// resources/assets/js/components/Favorite.vue
<template>
 <span>
 <a href="#" rel="external nofollow" rel="external nofollow" v-if="isFavorited" @click.prevent="unFavorite(post)">
  <i class="fa fa-heart"></i>
 </a>
 <a href="#" rel="external nofollow" rel="external nofollow" v-else @click.prevent="favorite(post)">
  <i class="fa fa-heart-o"></i>
 </a>
 </span>
</template>
<script>
 export default {
 props: ['post', 'favorited'],

 data: function() {
  return {
  isFavorited: '',
  }
 },
 mounted() {
  this.isFavorited = this.isFavorite ? true : false;
 },
 computed: {
  isFavorite() {
  return this.favorited;
  },
 },
 methods: {
  favorite(post) {
  axios.post('/favorite/'+post)
   .then(response => this.isFavorited = true)
   .catch(response => console.log(response.data));
  },
  unFavorite(post) {
  axios.post('/unfavorite/'+post)
   .then(response => this.isFavorited = false)
   .catch(response => console.log(response.data));
  }
 }
 }
</script>
2.5 整合axios 模組


•安裝axios

#npm install axios --save

•引入axios模組resource/assets/js/bootstrap.js 在最後加入 


<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" />
2.6 建立收藏夾元件

// 加在logout-form之后
<form id="logout-form" action="{{ url(&#39;/logout&#39;) }}" method="POST" style="display: none;">
 {{ csrf_field() }}
</form>
<a href="{{ url(&#39;my_favorites&#39;) }}" rel="external nofollow" >我的收藏夹</a>

2.7 檢視中引入元件

在視圖元件使用之前,我們先引入字體檔案resource/views/layouts/app.blade.php 頭部引入字體檔案 

// resources/views/home/article/index.blade.php
if (Auth::check())
 <p class="panel-footer">
 <favorite
  :post={{ $list->id }}
  :favorited={{ $list->favorited() ? 'true' : 'false' }}
 ></favorite>
 </p>

並在app.blade.php 添加我的收藏夾連結

public function favorited()
 {
 return (bool) Favorite::where('user_id', Auth::id())
    ->where('post_id', $this->id)
    ->first();
 }
使用元件

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

endif

然後我們要建立favorited() 開啟app/Models/Post.php 增加favorited()方法

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

npm run dev

2.8 使用元件

引入Favorite.vue 元件resources/assets/js/app.js

php artisan make:controller UsersController

#編譯

app/Http/Controllers/UsersController.php  
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Auth;
class UsersController extends Controller
{
 public function myFavorites()
 {
 $myFavorites = Auth::user()->favorites;
 return view('users.my_favorites', compact('myFavorites'));
 }
}

##效果圖

3. 完成我的收藏夾


3.1 建立使用者控制器

// resources/views/users/my_favorites.blade.php

extends('layouts.app')

@section('content')
<p class="container">
 <p class="row">
 <p class="col-md-8 col-md-offset-2">
  <p class="page-header">
  <h3>My Favorites</h3>
  </p>
  @forelse ($myFavorites as $myFavorite)
  <p class="panel panel-default">
   <p class="panel-heading">
   <a href="/article/{{ $myFavorite->id }}" rel="external nofollow" >
    {{ $myFavorite->title }}
   </a>
   </p>

   <p class="panel-body" style="max-height:300px;overflow:hidden;">
   <img src="/uploads/{!! ($myFavorite->cover)[0] !!}" style="max-width:100%;overflow:hidden;" alt="">
   </p>
   @if (Auth::check())
   <p class="panel-footer">
    <favorite
    :post={{ $myFavorite->id }}
    :favorited={{ $myFavorite->favorited() ? 'true' : 'false' }}
    ></favorite>
   </p>
   @endif
  </p>
  @empty
  <p>You have no favorite posts.</p>
  @endforelse
  </p>
 </p>
</p>
@endsection
修改

Route::get('/', 'ArticleController@index');
新增檢視檔

rrreee

然後重新向根目錄routes/web.php 新增一條路由

rrreee

#最後效果圖

相關推薦:

js Firefox 加入收藏夾功能程式碼相容Firefox 和IE_javascript技巧

#JavaScript加入收藏夾功能(相容IE、firefox、chrome)_javascript技巧

####

原生JS實作加入收藏夾的程式碼_javascript技巧

#

以上是laravel5.3 vue 實作收藏夾功能的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn