本篇內(nèi)容主要講解“l(fā)aravel自動(dòng)路由的使用方法”,感興趣的朋友不妨來(lái)看看。本文介紹的方法操作簡(jiǎn)單快捷,實(shí)用性強(qiáng)。下面就讓小編來(lái)帶大家學(xué)習(xí)“l(fā)aravel自動(dòng)路由的使用方法”吧!
網(wǎng)站建設(shè)哪家好,找成都創(chuàng)新互聯(lián)!專(zhuān)注于網(wǎng)頁(yè)設(shè)計(jì)、網(wǎng)站建設(shè)、微信開(kāi)發(fā)、成都微信小程序、集團(tuán)企業(yè)網(wǎng)站建設(shè)等服務(wù)項(xiàng)目。為回饋新老客戶(hù)創(chuàng)新互聯(lián)還提供了新洲免費(fèi)建站歡迎大家使用!
第一個(gè)版本
一.功能
優(yōu)點(diǎn)1。自動(dòng)匹配控制器
例如:網(wǎng)址:localhost/home/hello/index/id/name/……
控制器:App\Http\Controllers\Hello.php
方法:index是Hello.php下的方法
參數(shù):id,name…..都是參數(shù),自動(dòng)匹配到控制器方法內(nèi)的參數(shù)
優(yōu)點(diǎn)2。可以在原有的routes->api.php和routes->web.php內(nèi)配置路由
優(yōu)點(diǎn)3。在api或者web指定的路由會(huì)優(yōu)先匹配
二.安裝
composer require xindong888/laravel-router
三.使用方法一
1.使用composer加載 composer require xindong888/laravel-router
2.進(jìn)入配置文件夾config->app.php
[ //.................注釋掉原有的路由服務(wù)提供者 //App\Providers\RouteServiceProvider::class, //.................添加萬(wàn)能路由服務(wù)提供者 xindong888\Laravel\Providers\RouteServiceProvider::class ]] ?>
四.使用方法二
1.用app->Providers->RouteServiceProvider繼承xindong888\Laravel\Providers\RouteServiceProvider
2.清理掉boot()內(nèi)的代碼添加parent::boot();
class RouteServiceProvider extends \xindong888\Laravel\Providers\RouteServiceProvider { public function boot() { parent::boot(); } }
到此,相信大家對(duì)“l(fā)aravel自動(dòng)路由的使用方法”有了更深的了解,不妨來(lái)實(shí)際操作一番吧!這里是創(chuàng)新互聯(lián)網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢(xún),關(guān)注我們,繼續(xù)學(xué)習(xí)!