donglin4636 2017-02-24 20:54
浏览 58
已采纳

如何将多个Checkbox填充到数据库?

I have a Voice Model where I save all the new voices and each voice has name and language field. My Second Model is Device Model, I want to populate these voices on the Device form view as Checkboxes and let the user to pick one or more than one and save it to related Device as JSON.

Someone - help! :)

How I want to save the voices to the Robot

{
  "voice_name":"sample1",
  "voice_language":"English"
}

Voice Model

public $fillable = [
  'name',
  'language'
];

public function devices()
{
  return $this->belongsToMany('App\Models\Device');
}

Device Model

public $fillable = [
  'device_name',
  'version',
  'voices'
];

public function voices()
{
  return $this->hasMany('App\Models\Voice');
}

Robot Form

<div class="form-group">
{!! Form::label('device_name', 'Device Name:') !!}
{!! Form::text('device_name', null, ['class' => 'form-control') !!}

{!! Form::label('version', 'version:') !!}
{!! Form::text('version', null, ['class' => 'form-control') !!}

<div class="form-group">
{!! Form::label('voices', 'Voices:') !!}

//I want to list all the voices here as Checkboxes
{!! Form::checkbox('voices[]', null, ['class' => 'form-control']) !!}
</div>
  • 写回答

1条回答 默认 最新

  • dongziche8030 2017-02-24 21:29
    关注

    I use this selectinput.blade.php

    <input type="hidden" name="{{$attr['id']}}" value="0" />
    <input type="checkbox" class="filled-in"
    @foreach ($attr as $attr_key => $attr_value)
        @if ($attr_key == 'disabled')
            @if($attr_value == 'disabled')
                disabled="disabled"
            @endif
        @else
            @if ($attr_key == 'readonly')
                @if($attr_value == 'readonly')
                    readonly="readonly" disabled="disabled"
                @endif
            @else
                {{$attr_key}}="{{$attr_value}}"
            @endif
        @endif
    @endforeach
        @if ($val=="1")
            checked
        @endif
        @if (isset($attr['id']))
            name="{{ $attr['id'] }}"
        @endif value="1">
    @if (isset($attr['id']))
        <label for="{{ $attr['id'] }}" >
            {{ $label }}
        </label>
    @endif
    

    Where there are 2 checkboxes as a kind of hack to always send the checkbox value, even if it's unchecked, based on this answer.

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

报告相同问题?

悬赏问题

  • ¥50 三种调度算法报错 有实例
  • ¥15 关于#python#的问题,请各位专家解答!
  • ¥200 询问:python实现大地主题正反算的程序设计,有偿
  • ¥15 smptlib使用465端口发送邮件失败
  • ¥200 总是报错,能帮助用python实现程序实现高斯正反算吗?有偿
  • ¥15 对于squad数据集的基于bert模型的微调
  • ¥15 为什么我运行这个网络会出现以下报错?CRNN神经网络
  • ¥20 steam下载游戏占用内存
  • ¥15 CST保存项目时失败
  • ¥20 java在应用程序里获取不到扬声器设备