我有大约32个复选框,每个复选框都有自己的名称值(它们的名称是数值:1,2,3等)。如果我选中一个方框,让我们说复选框5,它将与复选框1一起插入数据库,即使我没有选中复选框1。
我一直在努力弄清楚过去一小时为什么会发生这种情况......这可能是一件简单的事情,我只是忽略了它。
我正在使用Laravel 3。
我排除了值:3,4,14,15和25,因为它们不存在于我的数据库中。
$exclude = array(3,4,14,15,25);
for ($r = 1; $r <= 37; $r++)
{
$exists = 0;
if (in_array($r, $exclude)) continue;
$hasRating = UserRating::where('uid', '=', $uid)->where('rid', '=', $r)->count();
if($hasRating)
$exists = 1;
// rating doesn't exist and we're adding it
if(Input::has($r) && !$exists)
{
$rating = new UserRating;
$rating->uid = $uid;
$rating->rid = $r;
$rating->save();
}
// remove rating if unchecked
if(!Input::has($r) && $exists)
UserRating::where('rid', '=', $r)->where('uid', '=', $uid)->delete();
}
以下是复选框的代码:
public static function showratings($uid, $rid, $rating)
{
$check = UserRating::where('rid', '=', $rid)->where('uid', '=', $uid)->count();
if($check)
{
$check = " checked";
$name = "<strong>".$rating."</strong>";
}
else
{
$check = "";
$name = $rating;
}
echo "<input type=\"checkbox\" name=\"$rid\" $check /> $name";
}
答案 0 :(得分:1)
你不应该检查是否设置了复选框(通过使用Input :: has),但是给复选框一个值并检查值是否相同。
echo "<input type=\"checkbox\" name=\"$rid\" value="yes" $check /> $name";
// rating doesn't exist and we're adding it
if(Input::has($r) && Input::get($r) == 'yes' && !$exists)
{
$rating = new UserRating;
$rating->uid = $uid;
$rating->rid = $r;
$rating->save();
}
// remove rating if unchecked
if((!Input::has($r) || Input::get($r) != 'yes') && $exists)
UserRating::where('rid', '=', $r)->where('uid', '=', $uid)->delete();