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

location.href = "{{url('user/index2')}}";

或者:

location.href = "{{url::to('user/index2')}}";

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

例如:

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

location.href = "{{route('user/index2')}}";

或者:

location.href = "{{URL::route('user/index2')}}";

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

location.href = "{{action('UserController@index2',['id'=>1,'author'=>'admin'])}}";

或者:

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

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

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

您可能感兴趣的文章:

声明:本站(华域联盟www.cnhackhy.com)所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。