我有一个发布这些值的表格:
调查[0].Key 75
调查[0].值 4
调查[1].Key 76
调查[1].Value 4
我正在尝试使用默认模型绑定器将其映射到 Dictionary 类型:
[HttpPost]
public ActionResult CompleteSurvey(Dictionary<int, int> answers)
{
...
}
但我得到 InvalidCastException: Specified cast is not valid。
为什么??