我对 knockout.js 很陌生,我很享受学习如何使用它制作接口。但是在尝试使我的界面更高效时,我遇到了一些障碍。我想要实现的是仅删除$('.document_checkbox').serializeArray() 选择的元素,其中包含修订 ID。然后,我将使用修改后的 self.getDocument() 调用将条目重新添加到视图模型,只传递将重新添加的修改后的记录。谁能帮助我如何根据$('.document_checkbox').serializeArray()的 'revision_id' 值从数组中删除条目 ?
function Document(data) {
this.line_id = data.line_id
this.revision_id = ko.observable(data.revision_id);
this.status_id = ko.observable(data.status_id);
}
function DocumentViewModel() {
var self = this;
self.documents = ko.observableArray([]);
self.getDocument = function(){
//Reset arrays
self.documents.removeAll();
//Dynamically build section arrays
$.getJSON("/Documentation/Get-Section", function(allData) {
$.map(allData, function(item) {
var section = { name: item.array_name, display_name: item.display_name, documents: ko.observableArray([])};
self.documents.push(section);
})
//Add document objects to the arrays
$.getJSON("/Documentation/Get-Document", function(allData){
$.map(allData, function(item) {
var section = ko.utils.arrayFirst(self.documents(), function(documentSection) {
return documentSection.name === item.array_name;
});
section.documents.push(new Document(item));
});
});
});
}
self.updateStatusBatch = function(data,event){
$.post('/Documentation/Update-Status-Batch',
{
revision_id : $('.document_checkbox').serializeArray(),
status_id : event.currentTarget.value
}).done(
function(){
//This is where I get confused.
});
}
}