佳木斯湛栽影视文化发展公司

主頁 > 知識(shí)庫 > laravel7學(xué)習(xí)之無限級(jí)分類的最新實(shí)現(xiàn)方法

laravel7學(xué)習(xí)之無限級(jí)分類的最新實(shí)現(xiàn)方法

熱門標(biāo)簽:Linux服務(wù)器 團(tuán)購(gòu)網(wǎng)站 阿里云 Mysql連接數(shù)設(shè)置 銀行業(yè)務(wù) 服務(wù)器配置 電子圍欄 科大訊飛語音識(shí)別系統(tǒng)

寫在前面的話

無限級(jí)分類,基本在所有的網(wǎng)站都有涉及,所以是必須要掌握的知識(shí)點(diǎn),在網(wǎng)上看很多資料文檔,要么不細(xì)致,要么根本不對(duì),要么達(dá)不到預(yù)想的目標(biāo),其實(shí)實(shí)現(xiàn)的思路和方法非常簡(jiǎn)單,今天我們一起來實(shí)現(xiàn)一下。

創(chuàng)建模型控制器數(shù)據(jù)遷移文件

這里直接使用artisan命令進(jìn)行創(chuàng)建

# -a 其實(shí)就是all,創(chuàng)建包含模型,控制器(資源),數(shù)據(jù)遷移文件(工廠模型、seed)
php artisan make:model -a Category

運(yùn)行這條命令,就可以創(chuàng)建好資源控制器。

修改數(shù)據(jù)遷移文件

首先修改數(shù)據(jù)遷移文件xxx_create_categories_table.

打開文件,修改里面的up方法,添加相應(yīng)字段。

Schema::create('categories', function (Blueprint $table) {
   $table->id();
   $table->string('title', 100)->comment('分類名稱');
   $table->string('name', 100)->comment('分類標(biāo)識(shí)');
   $table->string('description', 255)->nullable()->comment('分類描述');
   $table->integer('pid')->default(0)->comment('分類id');
   $table->integer('level')->default(1)->comment('分類層級(jí)');
   $table->integer('sort')->default(0)->comment('排序');
   $table->integer('status')->default(1)->comment('狀態(tài):0-禁用,1-正常');
   $table->timestamps();
  });

執(zhí)行遷移命令

php artisan migrate

嵌套模型實(shí)現(xiàn)讀取

//App\Models\Category.php
 
public function categories()
 {
  return $this->hasMany(self::class, 'pid', 'id')->with('categories');
 }

控制器調(diào)用

//app\Http\controllers\CategooryController.php
# use模型
use App\Models\Category;
 
public function index()
 {
  $categories = Category::with('categories')->where('pid', 0)->get();
  return view('category.index', compact('categories'));
 }

添加路由

在 routes/web.php,我們添加以下內(nèi)容:

Route::get('category', 'CategoryController@index');

blade模版渲染

這里使用遞歸渲染。

在 resources/views/categories.blade.php 文件:

table class="table table-borderless table-data3">
  thead>
   tr>
    th>編號(hào)/th>
    th>分類名稱/th>
    th>分類標(biāo)識(shí)/th>
    th>分類描述/th>
    th>創(chuàng)建時(shí)間/th>
    th>狀態(tài)/th>
    th>操作/th>
   /tr>
  /thead>
  tbody>
   @foreach ($categories as $category)
   tr class="tr-shadow">
    td>{{ $category->id }}/td>
    td>{{ $category->title }}/td>
    td>
     span class="block-email">{{ $category->name }}/span>
    /td>
    td class="desc">{{ $category->description }}/td>
    td>{{ $category->created_at }}/td>
    td>
     span class="status--process">{{ $category->status }}/span>
    /td>
    td>/td>
   /tr>
   tr class="spacer">/tr>
   @foreach ($category->categories as $childCategory)
   @include('category.child_category', ['child_category' => $childCategory])
   @endforeach
   @endforeach
  /tbody>
 /table>

遞歸部分加載自身模版child_category.blade.php

tr class="tr-shadow">
 td>{{ $child_category->id }}/td>
 td>|{{ str_repeat('--',$child_category->level-1) }} {{ $child_category->title }}/td>
 td>
  span class="block-email">{{ $child_category->name }}/span>
 /td>
 td class="desc">{{ $child_category->description }}/td>
 td>{{ $child_category->created_at }}/td>
 td>
  span class="status--process">{{ $child_category->status }}/span>
 /td>
 td>/td>
/tr>
tr class="spacer">/tr>
@if ($child_category->categories)
@foreach ($child_category->categories as $childCategory)
@include('category.child_category', ['child_category' => $childCategory])
@endforeach
@endif

最后看一下效果

總結(jié)

到此這篇關(guān)于laravel7學(xué)習(xí)之無限級(jí)分類最新實(shí)現(xiàn)方法的文章就介紹到這了,更多相關(guān)laravel7無限級(jí)分類實(shí)現(xiàn)內(nèi)容請(qǐng)搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!

您可能感興趣的文章:
  • laravel5.6 框架操作數(shù)據(jù) Eloquent ORM用法示例
  • Laravel 手動(dòng)開關(guān) Eloquent 修改器的操作方法
  • laravel框架數(shù)據(jù)庫操作、查詢構(gòu)建器、Eloquent ORM操作實(shí)例分析
  • Laravel框架Eloquent ORM新增數(shù)據(jù)、自定義時(shí)間戳及批量賦值用法詳解
  • Laravel框架Eloquent ORM簡(jiǎn)介、模型建立及查詢數(shù)據(jù)操作詳解
  • Laravel框架Eloquent ORM修改數(shù)據(jù)操作示例
  • Laravel Eloquent分表方法并使用模型關(guān)聯(lián)的實(shí)現(xiàn)
  • laravel admin實(shí)現(xiàn)分類樹/模型樹的示例代碼
  • 如何使用Laravel Eloquent來開發(fā)無限極分類

標(biāo)簽:衢州 萍鄉(xiāng) 廣元 大理 蚌埠 棗莊 江蘇 衡水

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《laravel7學(xué)習(xí)之無限級(jí)分類的最新實(shí)現(xiàn)方法》,本文關(guān)鍵詞  ;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 收縮
    • 微信客服
    • 微信二維碼
    • 電話咨詢

    • 400-1100-266
    柘荣县| 互助| 浪卡子县| 化州市| 龙江县| 南京市| 铜山县| 聂拉木县| 砀山县| 景泰县| 布尔津县| 雷山县| 祁东县| 南涧| 开平市| 鹤岗市| 开封市| 西乡县| 延长县| 蒲城县| 佛教| 新巴尔虎右旗| 汾阳市| 永安市| 泾阳县| 丰都县| 通渭县| 陆川县| 鸡东县| 大港区| 乐亭县| 柘城县| 卢湾区| 洮南市| 朝阳市| 屏山县| 巴楚县| 延川县| 锦州市| 宁乡县| 阜南县|