答案 0 :(得分:0)
您应该使用 POST 将List<Billing>
发送到您的WebApi。在WebApi中将System.Web.Http.HttpGet
更改为System.Web.Http.HttpPost
。
在您的dataService中使用以下内容:
function post(endpoint, data) {
return $http.post(baseUrl + '/' + endpoint, data)
.error(function (data, status) {
notify.error('Error sending data to ' + endpoint + ' (' + status + ')');
});
}