ラベルとチェックボックスのリストを表示するビューを定義したいのですが、ユーザーはチェックボックスを変更してからポストバックできます。辞書のポストバックに問題があります。つまり、post メソッドの辞書パラメーターが null です。
以下は、GET アクションと POST アクションの両方のアクション メソッドです。
public ActionResult MasterEdit(int id)
{
Dictionary<string, bool> kv = new Dictionary<string, bool>()
{
{"A", true},
{"B", false}
};
return View(kv);
}
[HttpPost]
public ActionResult MasterEdit(Dictionary<string, bool> kv)
{
return RedirectToAction("MasterEdit", new { id = 1 });
}
Beliw はビューです
@model System.Collections.Generic.Dictionary<string, bool>
@{
ViewBag.Title = "Edit";
}
<h2>
MasterEdit</h2>
@using (Html.BeginForm())
{
<table>
@foreach(var dic in Model)
{
<tr>
@dic.Key <input type="checkbox" name="kv" value="@dic.Value" />
</tr>
}
</table>
<input type="submit" value="Save" />
}
どんなアイデアでも大歓迎です!