您好,登錄后才能下訂單哦!
本篇內(nèi)容主要講解“l(fā)aravel自動(dòng)路由的使用方法”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實(shí)用性強(qiáng)。下面就讓小編來帶大家學(xué)習(xí)“l(fā)aravel自動(dòng)路由的使用方法”吧!
第一個(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
<?php [ 'providers' => [ //.................注釋掉原有的路由服務(wù)提供者 //App\Providers\RouteServiceProvider::class, //.................添加萬能路由服務(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)路由的使用方法”有了更深的了解,不妨來實(shí)際操作一番吧!這里是億速云網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。