【发布时间】:2018-10-04 21:32:26
【问题描述】:
Post 适用于长度为 20 的数组,但不适用于长度为 2000 的数组:
js/角度
$http.post('/index/SaveArray', $scope.SaveList).then(
function successCallback(response) {},
function errorCallback(response) {}
);
C#
public ActionResult SaveArray(List<SelectModel> dataToSave)
{
StringBuilder str = new StringBuilder();
JsonResult objResult = new JsonResult();
return Json(objResult, JsonRequestBehavior.AllowGet);
}
【问题讨论】:
标签: angularjs asp.net-mvc asp.net-mvc-4 asp.net-web-api