1

我在视图中有一组如下复选框,作为较大表单的一部分。

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

假设我选中复选框 2 和复选框 4,然后单击提交。为了保存,我在控制器中循环checkbox_array[]如下。

$checkbox_array = $this -> input -> post('checkbox_array', TRUE)

<?php for($i=0;$i<count($checkbox_array);$i++){
$users = new User();
$users -> role_id = $checkbox_array[$i];
//Amongst other form data
$users -> save();
}?>

这会将数据库中的数据保存为:

id role_id 
1    2
2    4

使用相同的视图,我打算编辑保存的数据。所以现在说我要选中复选框 1,取消选中复选框 2,选中复选框 3,保留复选框 4。这样我打算在数据库中拥有以下内容。

id role_id 
1    1
2    3
3    4

但是我不知如何进行更新。我一直在考虑从数据库中获取保存的数组,进行inarray()搜索,然后插入不在保存数组中的数据,计算上我不知道这有多有效。

有没有我可以使用的 mysql 函数来实现这一点,比如 like replace(),或者我还能如何实现编辑?

谢谢你。

4

2 回答 2

1

在这种情况下,我通常最终做的是首先删除数据库中与该表单相关的所有数据(针对特定用户等),然后插入复选框的数据。删除符合条件的数据(特别是如果删除的 WHERE 在索引列上)比尝试选择并有选择地删除它们要便宜得多。更不用说它使代码更清洁,从长远来看,出于维护原因,它有其好处。

为了更清楚一点,在索引上有 WHERE 子句的 DELETE 远比 SELECT 和 DELETE 便宜得多,然后是那些不应该在那里的那些,然后是 INSERT。

于 2013-09-20T06:23:16.137 回答
0
$checkbox1 = $_POST['checkbox_array'];
$selected_checkbox = "";
foreach ($checkbox1 as $checkbox1) 
{
   $selected_checkbox .= $checkbox1 . ", ";
}
$selected_checkbox = substr($selected_checkbox, 0, -2);

// your insert query here.. 
于 2013-09-20T06:27:33.400 回答