我需要按名称返回其他路径路径(类似for u in ui:
ui.education.degree_name
# and so on for other fields.
),我试过/home/{page?}
https://laravel.com/api/5.1/Illuminate/Contracts/Routing/UrlGenerator.html#method_route
Route()
但我需要返回系统路径:Route('home'); //return http://localhost/home
Route('home',[1]); //return http://localhost/home/1
Route('home',[1],false); //return /home/1
,而/home/{page?}
不是当前路径,
感谢,
更新
路线定义:
home
答案 0 :(得分:0)
您可以使用route()
函数中的关联数组按名称填写路径参数。
像这样:
$url = route('home', ['page' => 1]);
这样您就可以在数组中以任何顺序放置参数。
答案 1 :(得分:0)
$urldata = route('home', ['page' => 1]);