gpt4 book ai didi

asp.net-mvc-3 - 我怎么能有一个 CheckBoxFor 使用 int?

转载 作者:行者123 更新时间:2023-12-04 09:32:03 24 4
gpt4 key购买 nike

我需要帮助来构建 CheckBoxFor 以获得 int值(value)。

就像是:

@Html.CheckBoxForInt(m => m.foo.intValue)

应该是 已检查 如果 intValue = 1否则 未检查 .

最佳答案

为什么不在模型中公开一个可转换为 int 的 bool 属性?

像这样的东西:

public bool BoolValue
{
get { return IntValue == 1; }
set { IntValue = value ? 1 : 0;}
}

public int IntValue { get; set; }

然后你可以用它来创建复选框
@Html.CheckBoxFor(m => m.foo.BoolValue)

关于asp.net-mvc-3 - 我怎么能有一个 CheckBoxFor 使用 int?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13516113/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com