我要做的就是将字符串/整数数组传递给 mvc 操作方法。但是数据总是返回为空,我做错了什么?
MVC 控制器
[HttpPost]
public ActionResult MyAction(List<string> ids)
{
// do something with array
// But it's null
return View();
}
jQuery
$.post("/MyController/MyAction", JSON.stringify(ids), function () { alert("woohoo"); }, "application/json");
发布到操作结果的数据
["156"]