doushi1912 2017-02-02 13:26
浏览 102
已采纳

如何在表单提交上发送参数到路由

I have the following route:

Route::get("/changeLang/{lang}", 'SiteController@changeLang');

And I have the following form:

<form action="{{ url('/changeLang/???') }}" method="GET">
    {{ csrf_field() }}
    <select onchange="this.form.submit()" name="lang">
        <option value="eng">English</option>
        <option value="cro">Hrvatski</option>
    </select>
</form>

So I'd like to submit that form to that route so that the route receives the language that the user selected. I don't know should form method be GET or POST.

So how do I specify link to that route in form action so that the selected language gets sent? What to put instead of those question marks at the end of the URL?

And I don't like to use Laravel's Form facade (or is it just class) to echo HTML elements, so I'd like to do it without that if possible.

  • 写回答

4条回答 默认 最新

  • doudiyu1639 2017-02-02 13:36
    关注

    You can not submit a form and have it generate a URL in the format that you are expecting. What is going to happen is you will get a URL in the format of /changeLang/lang?lang=cro

    So you have two options. You submit the form and it redirects based off the querysting value.

    OR you add JavaScript to your form so you produce the url that you are after.

    <select onchange="window.location.href='/changeLang/' + this.value;" name="lang">
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(3条)

报告相同问题?

悬赏问题

  • ¥15 没有证书,nginx怎么反向代理到只能接受https的公网网站
  • ¥50 成都蓉城足球俱乐部小程序抢票
  • ¥15 yolov7训练自己的数据集
  • ¥15 esp8266与51单片机连接问题(标签-单片机|关键词-串口)(相关搜索:51单片机|单片机|测试代码)
  • ¥15 电力市场出清matlab yalmip kkt 双层优化问题
  • ¥30 ros小车路径规划实现不了,如何解决?(操作系统-ubuntu)
  • ¥20 matlab yalmip kkt 双层优化问题
  • ¥15 如何在3D高斯飞溅的渲染的场景中获得一个可控的旋转物体
  • ¥88 实在没有想法,需要个思路
  • ¥15 MATLAB报错输入参数太多