Home  >  Article  >  Backend Development  >  Laravel 5.2: 怎么读取保存在一个列中的checkbox?

Laravel 5.2: 怎么读取保存在一个列中的checkbox?

WBOY
WBOYOriginal
2016-06-06 20:09:001092browse

Laravel 5.2: 怎么读取保存在一个列中的checkbox?

比如下面有一组复选框:

<code>    {!! Form::open(array('url' => 'foo/bar')) !!}
      <div class="checkbox">
            <label class="checkbox-inline">
          <input type="checkbox" id="checkbox1" name="checkbox[]" value="1"> 1
        </label>
        <label class="checkbox-inline">
          <input type="checkbox" id="checkbox2" name="checkbox[]" value="2"> 2
        </label>
        <label class="checkbox-inline">
          <input type="checkbox" id="checkbox3" name="checkbox[]" value="3"> 3
        </label>
      </div>
    <button type="submit" class="btn btn-primary">Submit</button>
    {!! Form::close() !!}</code>

在控制器中,接收选中的项:

<code>    $checkboxes = $request->input('checkbox');</code>

接收后,用json_encode()转换成json格式保存在数据表的一个列中,
问题是:
在“编辑页面”,需要把这些项读出来,显示在“编辑页面”中时,以前选中的项要被选中,没被选中的项不被选中,应该怎么做呢?

回复内容:

Laravel 5.2: 怎么读取保存在一个列中的checkbox?

比如下面有一组复选框:

<code>    {!! Form::open(array('url' => 'foo/bar')) !!}
      <div class="checkbox">
            <label class="checkbox-inline">
          <input type="checkbox" id="checkbox1" name="checkbox[]" value="1"> 1
        </label>
        <label class="checkbox-inline">
          <input type="checkbox" id="checkbox2" name="checkbox[]" value="2"> 2
        </label>
        <label class="checkbox-inline">
          <input type="checkbox" id="checkbox3" name="checkbox[]" value="3"> 3
        </label>
      </div>
    <button type="submit" class="btn btn-primary">Submit</button>
    {!! Form::close() !!}</code>

在控制器中,接收选中的项:

<code>    $checkboxes = $request->input('checkbox');</code>

接收后,用json_encode()转换成json格式保存在数据表的一个列中,
问题是:
在“编辑页面”,需要把这些项读出来,显示在“编辑页面”中时,以前选中的项要被选中,没被选中的项不被选中,应该怎么做呢?

读出来的数据 json_decode()转成数组,在页面循环判断value值 相等的给个checked属性

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn