嗨,我有这个选择复选框,这是我检查所有值都通过的时间!现在我的问题是,当我保存到数据库中时,它只保存了一个值。这是我的HTML
<p>Sunday</p>
<input type="checkbox" name="select-all-sunday" id="select-all-sunday" onclick="toggle(this);"> Check All
<br>
<input type="checkbox" name="checkbox-sunday[]" id="checkbox-1" value="00:00"> 00:00 <br>
<input type="checkbox" name="checkbox-sunday[]" id="checkbox-2" value="1:00"> 1:00 <br>
<input type="checkbox" name="checkbox-sunday[]" id="checkbox-3" value="2:00"> 2:00 <br>
<input type="checkbox" name="checkbox-sunday[]" id="checkbox-4" value="3:00"> 3:00 <br>
<input type="checkbox" name="checkbox-sunday[]" id="checkbox-5" value="4:00"> 4:00 <br>
<input type="checkbox" name="checkbox-sunday[]" id="checkbox-6" value="5:00"> 5:00 <br>
<input type="checkbox" name="checkbox-sunday[]" id="checkbox-7" value="6:00"> 6:00 <br>
<input type="checkbox" name="checkbox-sunday[]" id="checkbox-8" value="7:00"> 7:00 <br>
<input type="checkbox" name="checkbox-sunday[]" id="checkbox-9" value="8:00"> 8:00 <br>
<input type="checkbox" name="checkbox-sunday[]" id="checkbox-10" value="9:00"> 9:00 <br>
<input type="checkbox" name="checkbox-sunday[]" id="checkbox-11" value="10:00"> 10:00 <br>
<input type="checkbox" name="checkbox-sunday[]" id="checkbox-12" value="11:00"> 11:00 <br>
<input type="checkbox" name="checkbox-sunday[]" id="checkbox-13" value="12:00"> 12:00 <br>
<input type="checkbox" name="checkbox-sunday[]" id="checkbox-14" value="13:00"> 13:00 <br>
<input type="checkbox" name="checkbox-sunday[]" id="checkbox-15" value="14:00"> 14:00 <br>
<input type="checkbox" name="checkbox-sunday[]" id="checkbox-16" value="15:00"> 15:00 <br>
<input type="checkbox" name="checkbox-sunday[]" id="checkbox-17" value="16:00"> 16:00 <br>
<input type="checkbox" name="checkbox-sunday[]" id="checkbox-18" value="17:00"> 17:00 <br>
<input type="checkbox" name="checkbox-sunday[]" id="checkbox-19" value="18:00"> 18:00 <br>
<input type="checkbox" name="checkbox-sunday[]" id="checkbox-20" value="19:00"> 19:00 <br>
<input type="checkbox" name="checkbox-sunday[]" id="checkbox-21" value="20:00"> 20:00 <br>
<input type="checkbox" name="checkbox-sunday[]" id="checkbox-22" value="21:00"> 21:00 <br>
<input type="checkbox" name="checkbox-sunday[]" id="checkbox-23" value="22:00"> 22:00 <br>
<input type="checkbox" name="checkbox-sunday[]" id="checkbox-24" value="23:00"> 23:00 <br>
这是我的控制器
$sundays = $request->input('checkbox-sunday');
foreach($sundays as $sunday){
echo $sunday.",";
}
现在,回显$ sunday似乎已正确地从表单显示传递了值。现在,在保存到数据库中时,仅保存了一个值。
下面是我保存到数据库中的代码
$sundays = $request->input('checkbox-sunday');
foreach($sundays as $sunday){
echo $sunday.",";
$postRoom = PostRoom::find($id);
$postRoom->description = $request->get('description');
$postRoom->checkin_date = $request->get('bookingDate');
$postRoom->checkin_time = $request->get('checkinTime');
$postRoom->room_price = $request->get('roomPrice');
$postRoom->day_sunday = $sunday;
$postRoom->your_neighbourhood = $request->get('yourNeighbourhood');
$postRoom->save();
return redirect('add-your-listing/next-step-3/'.$postRoom->id);
}
保存此内容的最佳方法是什么?有人能帮我吗? TIA。
答案 0 :(得分:0)
正常情况下,您在循环中花费,每次查找id并保存当前的Give循环,以便将其粉碎,最好的方法是制作一个表格并在此字段中发送该表格(对不起,我的英语)
我尝试这个。
$sundays = $request->input('checkbox-sunday');
$sundaysArray = array();
foreach($sundays as $sunday){
$sundaysArray[] = $sunday;
}
$postRoom = PostRoom::find($id);
$postRoom->description = $request->get('description');
$postRoom->checkin_date = $request->get('bookingDate');
$postRoom->checkin_time = $request->get('checkinTime');
$postRoom->room_price = $request->get('roomPrice');
$postRoom->day_sunday = json_encode($sundaysArray);
$postRoom->your_neighbourhood = $request->get('yourNeighbourhood');
$postRoom->save();
return redirect('add-your-listing/next-step-3/'.$postRoom->id);
答案 1 :(得分:0)
模型PostRoom
npm
代码
npm
答案 2 :(得分:0)
在PostRoom模型上,添加具有以下内容的受保护的$ casts变量
protected $casts = [
'day_sunday' => 'array',
];
然后如下更新您的保存方法
$postRoom = PostRoom::find($id);
$postRoom->description = $request->get('description');
$postRoom->checkin_date = $request->get('bookingDate');
$postRoom->checkin_time = $request->get('checkinTime');
$postRoom->room_price = $request->get('roomPrice');
$postRoom->day_sunday = $request->get('sundays');
$postRoom->your_neighbourhood = $request->get('yourNeighbourhood');
$postRoom->save();
这会将数据作为json_encoded对象存储在数据库中,但是就您的laravel应用而言,它是一个数组。当您读取$ postRoom-> day_sunday属性时,它将返回一个与控制器返回的数组匹配的数组。
答案 3 :(得分:0)
您的问题基于数组到字符串的转换,
您可以在保存和读取时使用json_encode()
或json_decode()
来转换数组,或者对我来说,我可以使用serialize()
和unserialize()
从中存储和检索数组集数据库作为字符串数据类型。
//read the checkbox input from the form.
$sundaysArray = $request->input('checkbox-sunday');
//while saving
$postRoom->day_sunday = json_encode($sundaysArray) //or
$postRoom->day_sunday = serialize($sundaysArray);
//while reading from database
$sundaysArray = json_decode($postRoom->day_sunday) //or
$sundaysArray = unserialize($postRoom->day_sunday);
无论哪种方法都有效。