如何创建需要传递字符串值的复选框?

发布于 2024-11-09 10:23:53 字数 183 浏览 0 评论 0原文

我想创建一个复选框,并且应该具有字符串值?

<%: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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

泪冰清 2024-11-16 10:23:53

问题是因为模型的 Bird 成员不是布尔类型

将新的 bool 成员 (birdBool) 添加到您的模型中。该成员可以如下:

public bool birdBool
{
   get{
      try
      {
         return bool.Parse(this.bird);
      }
      catch{
         return false;
      }
   }
   set{
      this.bird=value.ToString();
   }
}

在您看来,写下:

<%:Html.CheckBoxFor(model => model.birdBool)%>
<%:Html.LabelFor(model=>model.bird) %>

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:

public bool birdBool
{
   get{
      try
      {
         return bool.Parse(this.bird);
      }
      catch{
         return false;
      }
   }
   set{
      this.bird=value.ToString();
   }
}

In your view write this:

<%:Html.CheckBoxFor(model => model.birdBool)%>
<%:Html.LabelFor(model=>model.bird) %>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文