我有很多复选框,需要将人的选择轻松存储在MongoDB中。 但是当有人单击取消选中复选框
时,我不知道如何在MongoDB中获取值如果从编辑视图中取消选中复选框,如何删除MongoDB中的记录?
我的HTML代码
$(document).ready(function () {
$("#input-custom-field12").keyup(function () {
var value = $(this).val().trim();
if (value != undefined && value != null && value != "") {
$("#value2").val(value);
}
});
});
我的TS代码
<h5>Please choose your speciality of Interest</h5>
<div class="interests-list col-md-12">
<li class="int-list col-md-3" *ngFor="let interest of interests;let i = index">
<label>
<input type="checkbox"
name="interest"
value="{{interest}}"
[checked]="isCheckBoxCheckedForUser(interest.name)"
(change)="updateCheckedOptions(interest, $event)"/>
{{interest.name}}
</label>
</li>
</div>