流明:在边栏选项卡视图中获取 URL 参数
我正在尝试从视图文件中获取 url 参数。
我有这个网址:
http://locahost:8000/example?a=10
和名为 的视图文件。example.blade.php
从控制器中,我可以用.a
$request->input('a')
有没有办法从视图获取这样的参数(而不必将其从控制器传递到视图)?
我正在尝试从视图文件中获取 url 参数。
我有这个网址:
http://locahost:8000/example?a=10
和名为 的视图文件。example.blade.php
从控制器中,我可以用.a
$request->input('a')
有没有办法从视图获取这样的参数(而不必将其从控制器传递到视图)?
这很有效:
{{ app('request')->input('a') }}
网址参数在哪里。a
在这里查看更多: http://blog.netgloo.com/2015/07/17/lumen-getting-current-url-parameter-within-a-blade-view/
我用过的最短方式
{{ Request::get('a') }}