Laravel 表单方法获取 - url 参数
Laravel form method get - url parameters
我在 laravel 中得到了一个表格 Method='GET'
{{ Form::open(array('method' => 'get')) }}
我在那里有几个输入字段:city, skillLevel, province and category
。
当我提交表格时,我得到一个可怕的 url 像这样:
http://localhost/vacatures?city=somehwhere&skillLevel=junior&province=Zeeland&category=django
但我想要这样的东西:
http://localhost/vacatures/somewhere/junior/Zeeland/django
我该如何实现?我试过给一个路由属性和一个动作属性,但没有成功。
也许这个话题对你有帮助 - How To Pass GET Parameters To Laravel From With GET Method ?
有 2 个不错的答案,应该适合您的问题。
我在 laravel 中得到了一个表格 Method='GET'
{{ Form::open(array('method' => 'get')) }}
我在那里有几个输入字段:city, skillLevel, province and category
。
当我提交表格时,我得到一个可怕的 url 像这样:
http://localhost/vacatures?city=somehwhere&skillLevel=junior&province=Zeeland&category=django
但我想要这样的东西:
http://localhost/vacatures/somewhere/junior/Zeeland/django
我该如何实现?我试过给一个路由属性和一个动作属性,但没有成功。
也许这个话题对你有帮助 - How To Pass GET Parameters To Laravel From With GET Method ?
有 2 个不错的答案,应该适合您的问题。