douhuan1908 2014-04-07 14:41
浏览 356
已采纳

从Laravel的下拉列表中获取所选值

I am working my application with Laravel. Please I created in my view a dropdownlist :

<div class="form-group">
        {{ Form::label('Type', 'Type') }}
        {{ Form::select('Select_id', $profiles, Input::old('Select_id')) }}
     </div>

I want now to get the selected value after the user selects it from the list. Thanks for your help.

  • 写回答

2条回答 默认 最新

  • doutan6286 2014-04-08 08:25
    关注

    Based on your comment above, it's fairly straight forward to retrieve the value from the select. In the controller method that handles the route this form is posted to simply use:

    $input = Input::get(); or $input = Input::all();
    

    This will retrieve all input values as an array of key/value pairs, with the key being the name of your field/input. If you have set the names of the inputs to match the column names in your database, then you're good to go.

    You can also just retrieve the select value on it's own using:

    $selectId = Input::get('Select_id'); or $selectId = Input::only('Select_id');
    

    If you wanted to get all input except for the 'Select_id' field, you can use:

    $input = Input::except('Select_id');
    

    Once you have your input, you can then use this to create a record in your database.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 win2012磁盘空间不足,c盘正常,d盘无法写入
  • ¥15 用土力学知识进行土坡稳定性分析与挡土墙设计
  • ¥70 PlayWright在Java上连接CDP关联本地Chrome启动失败,貌似是Windows端口转发问题
  • ¥15 帮我写一个c++工程
  • ¥30 Eclipse官网打不开,官网首页进不去,显示无法访问此页面,求解决方法
  • ¥15 关于smbclient 库的使用
  • ¥15 微信小程序协议怎么写
  • ¥15 c语言怎么用printf(“\b \b”)与getch()实现黑框里写入与删除?
  • ¥20 怎么用dlib库的算法识别小麦病虫害
  • ¥15 华为ensp模拟器中S5700交换机在配置过程中老是反复重启