我在Angular4应用程序中使用Jquery数据表,除了数据更新问题外,其他所有功能都正常运行。我正在这样做以进行表更新:
if(data.status == 'success'){
this.dataArr.push({
"dept_name": value.deptName,
"created_by": this.loginEmpDetails.empId,
"created_date": new Date(),
"updated_by": null,
"updated_date": null,
"dept_status": 1 });
var table = $('#myTable').DataTable();
table.draw()
}
如果有人遇到此问题,请帮帮我。