未捕获的引用错误:无法处理绑定“foreach:函数(){返回列表}”
$(function () {
ko.applyBindings(modelView);
modelView.viewCourses();
});
var modelView = {
Courses: ko.observableArray([]),
viewCourses: function () {
var thisObj = this;
try {
$.ajax({
url: '/Home/ListaConcepto',
type: 'GET',
dataType: 'json',
contentType: 'application/json',
success: function (data) {
thisObj.lista(data);
},
error: function (err) {
alert(err.status + " : " + err.statusText);
}
});
} catch (e) {
window.location.href = '/Home/Index/';
}
}
};
1条答案
按热度按时间h7appiyu1#
发布
thisObj.lista(data);
lista
的代码的问题不存在于thisObj上。需要添加它。