当前位置:Gxlcms > PHP教程 > laravel怎么接收和保存一组checkbox到数据库?

laravel怎么接收和保存一组checkbox到数据库?

时间:2021-07-01 10:21:17 帮助过:4人阅读

正在使用的是Laravel 5.2,我知道怎么接收text,email, select, radio, textarea等,并把它们保存到数据库,但是不知道怎么接收和保存一组checkbox到数据库。
比如下面这个例子:


        {!! Form::open(array('url' => 'foo/bar')) !!}
    
      
We'll never share your email with anyone else.
This is some placeholder block-level help text for the above input. It's a bit lighter and easily wraps to a new line.
{!! Form::close() !!}

回复内容:

正在使用的是Laravel 5.2,我知道怎么接收text,email, select, radio, textarea等,并把它们保存到数据库,但是不知道怎么接收和保存一组checkbox到数据库。
比如下面这个例子:


        {!! Form::open(array('url' => 'foo/bar')) !!}
    
      
We'll never share your email with anyone else.
This is some placeholder block-level help text for the above input. It's a bit lighter and easily wraps to a new line.
{!! Form::close() !!}

使用name=check[ ]
这样接收的就是一个数组

人气教程排行