gpt4 book ai didi

asp.net-mvc - 如何根据枚举值检查单选按钮

转载 作者:行者123 更新时间:2023-12-04 16:49:50 24 4
gpt4 key购买 nike

我有一个枚举。根据模型带来的值(value),我必须检查单选按钮。我怎样才能做到这一点?

<%=Html.RadioButton("Role", Role.Viewer)%><%= .Role.Viewer%>
<%=Html.RadioButton("Role",.Role.Reporter)%><%= Role.Reporter%>
<%=Html.RadioButton("Role",Role.User)%><%= Role.User%>

我的枚举将具有数字 1 到 3,例如如果选择的枚举值为 1,我如何检查 Role.Viewer?

最佳答案

您可以毫无问题地将枚举值转换为 int:

<%=Html.RadioButton("Role", (int)Role.Viewer)%><%= (int)Role.Viewer%>
<%=Html.RadioButton("Role", (int)Role.Reporter)%><%= (int)Role.Reporter%>
<%=Html.RadioButton("Role", (int)Role.User)%><%= (int)Role.User%>

请记住,枚举定义隐含地具有从 0 开始的索引。如果您想要更多控制,您可以自己手动将 int 值分配给枚举:
public enum Role {
Viewer = 1,
Reporter = 2,
User = 3
}

[更新]

根据您的评论,我知道您想将数据库值绑定(bind)到单选列表。您可以使用以下代码来做到这一点:
<%=Html.RadioButton("Role", (int)Role.Viewer, Model.Role == Role.Viewer)%><%= (int)Role.Viewer%>
<%=Html.RadioButton("Role", (int)Role.Reporter, Model.Role == Role.Reporter)%><%= (int)Role.Reporter%>
<%=Html.RadioButton("Role", (int)Role.User, Model.Role == Role.User)%><%= (int)Role.User%>

此代码假定数据库值与 Model.Role 同步,但您当然可以用自己的逻辑替换它。还有 more elegant ways编写单选按钮枚举,但只有 3 个单选选项,坚持这个解决方案是安全的。

关于asp.net-mvc - 如何根据枚举值检查单选按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2665546/

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