我有一个名为CustomersInfoAPIController
的控制器。我使用Knock out,webapi2,asp.net mvc5来构建应用程序。我使用knout JS绑定数据。当我运行应用程序并调试淘汰脚本时,我没有看到任何错误。当我尝试使用AJAX插入数据时,我看到错误`"无法加载资源:服务器响应状态为500 (内部服务器错误)"
ajax代码是:
$.ajax({
url: '/api/CustomersInfo',
type: 'post',
data: dataObject,
contentType: 'application/json',
success: function (data) {
addCustomerViewModel.customerListViewModel.customers.push(new
Customer(data.Id,data.CustomerName, data.ContactName, data.Address,
data.City, data.PostalCode, data.Country));
self.Id(null);
self.CustomerName('');
self.ContactName('');
self.Address('');
self.City('');
self.PostalCode('');
self.Country('');
}
});