Html.CheckboxFor
生成具有false
值的隐藏字段,这是合理的。但现在我需要使用 GET HTTP 方法来实现表单。当我提交表单时,显然 true 和 false 值被发送到服务器。问题是 MVC 模型绑定器无法理解“真、假”值。
The parameter conversion from type 'System.String' to type 'System.Boolean' failed.
See the inner exception for more information.
我该如何解决这个问题?