我的复选框需要一些帮助。
到目前为止,我已经可以选中我的复选框,保存,它将保持保存状态。但是,当我将复选框保留为空并再次单击“保存”时,将再次选中该复选框。我该如何解决?
这是我的代码:
<div class="form-group">
<label>
Not sure about my departure date (select only if there is no date!) :
<input type="checkbox" name="not_sure" value="1" @if(old('not_sure', $currentDeparture->departure_notsure) == 1) checked @endif>
</label>
</div>
答案 0 :(得分:0)
在复选框前添加隐藏的输入
<div class="form-group">
<label>
Not sure about my departure date (select only if there is no date!) :
<input type="hidden" name="not_sure" value="0" />
<input type="checkbox" name="not_sure" value="1" @if(old('not_sure', $currentDeparture->departure_notsure) == 1) checked @endif>
</label>
</div>