我的一个表单字段需要能够从复选框字段中保存布尔值。选中=真,取消选中=假。如何设置输入字段?
<input type="checkbox" class="custom-control-input" id="user_private_account" @if($usersetting->user_private_account == true) checked @endif >
答案 0 :(得分:1)
尝试一下,
<input type="checkbox" class="custom-control-input" id="user_private_account" @if($usersetting->user_private_account == true) checked @endif name="user_private_account">
在您的Contoller中
$object->required = $request->user_private_account ? 1 : 0;
希望这会有所帮助:)
答案 1 :(得分:0)
做简单:
$object->required = isset($request->user_private_account)
因为isset()
仅返回true
或false
。