如何创建需要传递字符串值的复选框?
我想创建一个复选框,并且应该具有字符串值?
<%:Html.CheckBoxFor(model => model.bird)%>
<%:Html.LabelFor(model=>model.bird) %>
我收到错误消息说字符串无法转换为布尔值?
i want to create a check box and that should have to string value?
<%:Html.CheckBoxFor(model => model.bird)%>
<%:Html.LabelFor(model=>model.bird) %>
i get a error saying string cannot convert to bool?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
问题是因为模型的 Bird 成员不是布尔类型。
将新的 bool 成员 (birdBool) 添加到您的模型中。该成员可以如下:
在您看来,写下:
The problem is because the bird member of your model is not a boolean type.
Add a new bool member (birdBool) to your model. This member can be as follow:
In your view write this: