我在Knockout和Asp.net上合作完成了一个项目,我在使用Knockout添加删除操作时遇到了一些问题
一切正常,数据绑定表现良好。但是当我尝试添加删除功能时,我收到此错误:
JavaScript运行时错误:无法获取属性' deleteArticle'未定义或空引用
我的javascript:
// Class to represent an article
function article(data) {
//var self = this;
this.id = ko.observable(data.OrderId);
this.Type = ko.observable(data.Type);
this.Price = ko.observable(data.Price);
this.Quantity = ko.observable(data.Quantity);
}
function viewModel() {
var self = this;
self.Articles = ko.observableArray([]);
$.getJSON("@Url.Action("../home/AjaxArticles")", function (allData) {
var mappedArticles = $.map(allData, function (item) { return new article(item) });
self.Articles(mappedArticles);
});
// Delete an article
self.deleteArticle = function (ArticleData) {
self.Articles.remove(ArticleData);
};
self.MyMoney = ko.observableArray([]);
$.getJSON("@Url.Action("../home/AjaxMoney")", function (allData) {
var mappedMoney = $.map(allData, function (item) { return new Money(item) });
self.MyMoney(mappedMoney);
});
}
$(document).ready(function () {
ko.applyBindings(viewModel);
});
我使用淘汰赛的HTML部分:
<tbody data-bind="foreach: Articles">
<tr>
<td data-bind="text: id"></td>
<td data-bind="text: Price"></td>
<td data-bind="text: Type"></td>
<td data-bind="text: Quantity"></td>
<td><a href='#' data-bind="click: $root.deleteArticle">Cancel</a></td>
</tr>
</tbody>
我做错了什么?
答案 0 :(得分:1)
您没有正确实例化您的viewmodel(相反,您传入了函数对象本身)。当您应用KO绑定时,请传入viewmodel
的新实例,如下所示:
ko.applyBindings(new viewModel());