我试图通过网址调用一些数据,但我得到解析错误,我不知道该怎么办,因为没有其他错误。
function AppViewModel() {
var self = this;
BASEURL = 'http://localhost:8888/ko';
self.alldata = ko.observableArray();
self.viewAllInvoice = function () {
$.ajax({
type: 'POST',
url: BASEURL + '/index.php/main/learn_Ko' ,
contentType: 'application/json; charset=utf-8',
dataType :'json'
})
.done(function(invoices) {
alert(invoices);
self.alldata.removeAll();
$.each(invoices, function (index, invoice) {
self.alldata.push(invoice);
});
})
.fail(function(xhr, status, error) {
alert(status);
})
.always(function(data){
});
};
self.viewAllInvoice();
}
$(document).ready(function () {
ko.applyBindings(new AppViewModel(), document.getElementById('loanersclub_wrapper'));
});
添加了提醒功能以提醒发票,但它只显示了html模板。