1.通过url辅助函数(路由)生成:

location.href = "https://www.atool.online/article/{{url('user/index2')}}";

或者:

location.href = "https://www.atool.online/article/{{url::to('user/index2')}}";

2.通过别名(路由)生成,前提是在注册路由的时候要指定别名,

例如:

Route::get('user/index2',['as' => 'user/index2', 'uses' => 'UserController@index1']);

location.href = "https://www.atool.online/article/{{route('user/index2')}}";

或者:

location.href = "https://www.atool.online/article/{{URL::route('user/index2')}}";

3.通过控制器、方法名生成(路由不要指定别名,否则会报错!):

location.href = "https://www.atool.online/article/{{action('UserController@index2',['id'=>1,'author'=>'admin'])}}";

或者:

location.href = "https://www.atool.online/article/{{URL::action('UserController@index2',['id'=>1,'author'=>'admin'])}}";

当然2,3中携带的参数都可以在控制器中使用 Request $request 接受

以上这篇关于laravel模板中生成URL的几种模式总结就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持阿兔在线工具。

点赞(0)

微信公众账号

微信扫一扫加关注

发表
评论
返回
顶部