私は次のjqueryを持っています
$('#example').tableDnD({
onDrop: function (table, row) {
alert(JSON.stringify($('#example').tableDnDSerialize()));
var data = JSON.stringify($('#example').tableDnDSerialize());
$.post("/admin/ReorderNews", data, function (theResponse) {
$("#response").html(theResponse);
});
},
dragHandle: ".dragHandle"
});
サンプルデータは次のとおりです。example[]=&example[]=1&example[]=2&example[]=
データをに投稿するときに、テーブルの情報をデータ内に保存しています/admin/ReorderNews/
これは次のとおりです。
[HttpPost]
public ActionResult ReorderNews(string data)
{
return Content("ok");
}
OKを返します。ただし、デバッグ中は、データがであることがわかりますnull
。
どうすればこれを修正できますか?