jquery 呼び出しを介して更新したいコントローラー アクションがあります。アクションは実行されますが、パラメーターにデータがありません。
サーバーコードを実行したい列にカスタムコマンドを含むkedouiグリッドを使用しています。
kendoui grid in view
...
columns.Command(command =>
{
command.Custom("ToggleRole").Click("toggleRole");
});
...
モデルのタイプは List<_AdministrationUsers> です。
public class _AdministrationUsers
{
[Key]
[ScaffoldColumn(false)]
public Guid UserID { get; set; }
public string UserName { get; set; }
public string Role { get; set; }
}
ここに私の toggleRole スクリプトがあります:
<script type="text/javascript">
function toggleRole(e) {
e.preventDefault();
var dataItem = this.dataItem($(e.currentTarget).closest("tr"));
alert(JSON.stringify(dataItem));
$.ajax({
type: "POST",
url: '@Url.Action("ToggleRole", "Administration")',
data: JSON.stringify(dataItem),
success: function () {
RefreshGrid();
},
error: function () {
RefreshGrid()
}
});
}
</script>
これが私のコントローラーアクションです:
[HttpPost]
public ActionResult ToggleRole(string UserID, string UserName, string Role)
{
...
}
コントローラー アクションは起動しますが、どのパラメーターにもデータがありません。
「dataItem」変数に実際にデータがあることを確認するために、javascript にアラートを入れました。アラート テキストは次のようになります。
{"UserID":"f9f1d175...(etc.)","UserName":"User1","Role","Admin"}