json データをコントローラーに渡す必要があります。したがって、私は ajax 投稿を作成しました。しかし、それはアクションメソッドを呼び出していません。
function DeleteRow(postData) {
$.ajax({
url: '@Url.Action("DeleteGridRow","Project")',
type: 'POST',
dataType: "json",
contentType: "application/json; charset=utf-8",
async: false,
data: JSON.stringify(postData),
success: function (data) {
}
});
}
私の行動方法
[HttpPost]
public JsonResult DeleteGridRow(string postData)
{
return Json(null);
}
助けてください