dongtanghuan1885 2018-09-21 15:36
浏览 92
已采纳

Laravel - 在数据库中存储多个复选框表单值

So I've got this code

View:

<div id="checkboxes">
                         <input type="checkbox" class="checkbox" name="services" value="{{ $service->id }}" id="{{ $service->id }}" />
                         <label class="whatever" for="{{ $service->id }}"><p class="serv-text"> {{ $service->service_name }} + ${{ $service->price }} </p></label>
                             </div>

Controller:

  public function store(Request $request)
    {
       orders::create(Request::all());
        return 'test';
    }

Model:

class orders extends Model
{
    protected $fillable = [
    'category', 
    'services',
    'total_price',
    'user_id',
    'status',
    'user_id'];
}

When I try to submit the form, in the database at services there is only one number even if I checked multiple boxes when I submitted the form. I've tried to find on google a solution but nothing.

</div>
  • 写回答

1条回答 默认 最新

  • dongsong73032 2018-09-21 15:45
    关注

    If you have multiple checkboxes like this:

    <input type="checkbox" name="services" value="1"/>
    <input type="checkbox" name="services" value="2"/>
    <input type="checkbox" name="services" value="3"/>
    

    It will send's only one value to server, cause name must be unique. Workaround is to use array inputs:

    <input type="checkbox" name="services[]" value="1"/>
    <input type="checkbox" name="services[]" value="2"/>
    <input type="checkbox" name="services[]" value="3"/>
    

    Then you can grab that input in controller and do something like this:

    $services = $request->input('services');
    foreach($services as $service){
     orders::create($service);
    }
    

    Validation of arrays in Laravel:

    https://laravel.com/docs/5.7/validation#validating-arrays

    More about input arrays:

    https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/checkbox#Handling_multiple_checkboxes

    How to get form input array into PHP array

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 为什么使用javacv转封装rtsp为rtmp时出现如下问题:[h264 @ 000000004faf7500]no frame?
  • ¥15 乘性高斯噪声在深度学习网络中的应用
  • ¥15 运筹学排序问题中的在线排序
  • ¥15 关于docker部署flink集成hadoop的yarn,请教个问题 flink启动yarn-session.sh连不上hadoop,这个整了好几天一直不行,求帮忙看一下怎么解决
  • ¥30 求一段fortran代码用IVF编译运行的结果
  • ¥15 深度学习根据CNN网络模型,搭建BP模型并训练MNIST数据集
  • ¥15 C++ 头文件/宏冲突问题解决
  • ¥15 用comsol模拟大气湍流通过底部加热(温度不同)的腔体
  • ¥50 安卓adb backup备份子用户应用数据失败
  • ¥20 有人能用聚类分析帮我分析一下文本内容嘛