我的代码有一个疯狂的问题。我正在尝试实现这个 jsfiddle 代码
在我的代码中,但我没有成功。这是我所做的:
视图模型:
viewModelInbox = function(){
query: ko.observable('');
var checked = false,
mainData = ko.observableArray([]),
showView = ko.observable(),
currentView = ko.observable(),
approve = function(){
},
disapprove = function(){},
toggle = function () {
if(checked){
$.each(mainData(), function(){
this.checkB(false);
});
checked = false;
return;
}
if(!checked){
$.each(mainData(), function(){
this.checkB(true);
});
checked = true;
return;
}
};
viewModelInbox.mainData = ko.dependentObservable(function() {
var search = this.query().toLowerCase();
return ko.utils.arrayFilter(viewModelInbox, function(test) {
return test.name.toLowerCase().indexOf(search) >= 0;
});
}, viewModelInbox);
return {
mainData: mainData,
showView: showView,
currentView: currentView,
approve: approve,
disapprove: disapprove,
toggle: toggle
};
},
可mainData
观察数组包含一些值,如名称、代码、日期等。
我遇到的问题是我收到了这个错误:
TypeError: this.query is not a function
var search = this.query().toLowerCase();
我很确定我错过了一些非常小的东西,但由于我是 knockoutjs 的菜鸟,我无法发现它。