关于laravel模板中生成URL的几种模式总结
发布:smiling 来源: PHP粉丝网 添加日期:2022-01-10 19:57:32 浏览: 评论:0
今天小编就为大家分享一篇关于laravel模板中生成URL的几种模式总结,具有很好的参考价值,希望对大家有所帮助,一起跟随小编过来看看吧。
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 接受。
Tags: laravel生成URL
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)