私がやろうとしているのは、文字列/intの配列をmvcアクションメソッドに渡すことだけです。しかし、データは常にnullとして返されます。何が間違っているのでしょうか?
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"]