我如何在我的控制器中看到哪些单选按钮已被检查

本文关键字:单选按钮 检查 我的 控制器 | 更新日期: 2023-09-27 18:28:11

如果我问一个新手问题,我很抱歉,但我是asp.net mvc的新手。

所以,我有这样的观点:

@model FirstProject.Models.SelectRolesViewModel
@{
    ViewBag.Title = "Index";
}
<h2>Index</h2>
@using (Html.BeginForm("SelectRolesOverall","SelectRoles"))
{
    <table class="table">
        <tr>
            <th>Users</th>
            <th>Roles</th>
        </tr>
        @Html.EditorFor(model=>model.UsersAndRoles)
        <tr>
            <td></td>
            <td>
                <input type="submit" />
            </td>
        </tr>
    </table>
}

和编辑器模板:

@model FirstProject.Models.UserRole
    <tr>
        <td>@Model.User.UserName</td>
        <td>
            @Html.RadioButtonFor(model => model.Role, "Applicant") Applicant
            <br/>
            @Html.RadioButtonFor(model => model.Role, "Professor") Professor
        </td>
    </tr>

我的问题是:在按下提交按钮后,我如何查看控制器中检查了哪些单选按钮?我想有以下逻辑:如果选择了申请人,那么userRole就是申请人,否则如果选择了教授,那么userRole就是教授。我的控制器暂时是空的,因为我不知道在里面写什么。

我如何在我的控制器中看到哪些单选按钮已被检查

如果您的操作方法是

public SelectRolesOverall(SelectRolesViewModel model)

然后您可以使用访问集合

IEnumerable<UsersAndRoles> usesAndRoles = model.UsersAndRoles;

并访问集合中的每个项目

foreach (UserRole userRole in model.UsersAndRoles)
{
  string role = userRole.Role;
  string name = userRole.UserName; // see note below
}

请注意,您没有包含属性UserName的输入,因此该值不会返回,并且您可能难以将角色与用户匹配。您可能希望添加@Html.HiddenFor(m => m.UserName)或将<td>@Model.User.UserName</td>更改为<td>@Html.TextBoxFor(m => m.UserName, new { @readonly = "readonly" })</td>

试试这个

public ActionResult [YourActionName](string role)
{
   switch(role){
      case "Applicant": /*your applicant logic*/
          break;
      case "Professor": /*your Professor logic*/
          break;
      /*
          Other logic here
      */
}

将操作名称替换为您自己的
注意参数role应该与视图中的单选按钮同名,这是为了允许数据绑定在中工作