在这里,我有一些复选框,我想将其不正确和错误的数据值保存到服务器。如果我单击复选框,那么我会将组ID推送到数组中,而该组ID则要保存在数据库中。
这是我的HTML代码:
<input type="checkbox" value="group._id" formControlName="group_id" formControlName="group_id"(change)="getCheckboxValues($event,group)" /><span innerHTML="{{group.group_name}}"></span>
这是我的ts文件代码,在这里: 在这里,我只推送组ID
getCheckboxValues(event,id){
debugger;
const checked = event.target.checked;
if (checked) {
debugger
this.selectedGroups.push(id._id ); // push the Id in array if checked
} else {
debugger
const index = this.selectedGroups.findIndex(list => list.user_id == id);//Find the index of stored id
this.selectedGroups.splice(index, 1); // Then remove
}
}
// World View Question
worldViewQuestion = function (data) {
debugger;
// const videodisplaygroup =this.selectedGroups;
if (this.worldViewForm.valid)
data.group_id = $('input[name=group_id]:checked').val();
$("#worldView").val("SAVING...").attr("disabled", true);
this.authService.SaveWorldViewQuestion(data).subscribe(data => {
debugger;
if (data.success) {
//console.log({...this.worldViewForm.value,videodisplaygroup})
$.growl.notice({
title: 'Success',
message: data.message
});
} else {
$.growl.error({
title: 'Error',
message: data.error
});
}
$("#worldView").val("SAVE").attr("disabled", false);
});
}
我想将组ID保存在videodisplaygroup中 这是我的数据结构 here is the videodisplaygroup parameter where I want to store value
请您提供很大的帮助