您好,登錄后才能下訂單哦!
這篇文章主要介紹Laravel如何同時(shí)接收路由參數(shù)和查詢字符串中的參數(shù),文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!
Laravel允許在controller方法中捕捉路由里定義的參數(shù),如下所示:
路由中定義參數(shù):Route::get('post/{id}', 'PostController@content');
控制器方法里捕捉路由參數(shù):
class PostController extends Controller { public function content($id) { // } }
那在控制器里怎么既能捕捉到路由里定義的參數(shù)又能接收到url查詢字符串里的參數(shù)呢,比如請(qǐng)求鏈接是這樣的http://example.com.cn/post/1?from=index
引用官網(wǎng)文檔的解釋
Dependency Injection & Route ParametersIf your controller method is also expecting input from a route parameter you should list your route parameters after your other dependencies.
就是說如果想要在控制器方法注入依賴時(shí)仍然能使用路由里的參數(shù),你需要把路由里的參數(shù)列舉在方法依賴的后面,比如:
<?php namespace App\Http\Controllers; use Illuminate\Http\Request; class PostController extends Controller { public function content(Request $request, $id) { $from = $request->get('from') } }
此外laravel路由中我們還可以定義多個(gè)可選參數(shù):
Route::get('/article/{id}/{source?}/{medium?}/{campaign?}', 'ArticleController@detail')
在控制器方法中可選參數(shù)需要定義成默認(rèn)參數(shù):
public function detail(Request $request, $id, $source = '', $mediun = '', $campaign = '') { // }
這樣定義完后路由里URL里可以傳遞0~3個(gè)可選參數(shù),但是必須按照順序:即想傳第二個(gè)可選參數(shù)那么第一個(gè)可選參數(shù)必須有。
URL示例:http://example.com.cn/article/1/wx/h6?param1=val1¶m2=val2
在這個(gè)例子中"wx"
會(huì)傳遞給變量$source
, "h6"
會(huì)傳遞給變量$medium
以上是“Laravel如何同時(shí)接收路由參數(shù)和查詢字符串中的參數(shù)”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(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)容。