作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在 MVC
应用程序中,我加入了多个表并将其从 Controller
返回到 View
,如下所示:
| EmployeeID | ControlID | DoorAddress | DoorID | DoorName |
------------------------------------------------------------
| 921 | 1 | 1 | 101 | Door 1 |
| 921 | 1 | 2 | 102 | Door 2 |
| 921 | 1 | 3 | 103 | Door 3 |
| 921 | 1 | 4 | 104 | Door 4 |
------------------------------------------------------------
Controller :
public ActionResult Edit(int? id)
{
// Create and execute raw SQL query.
string query = "SELECT a.EmployeeID, a.ControlID, a.DoorAddress, t.DoorID, t.DoorName FROM TEmpAccess AS a " +
"INNER JOIN TDoor AS t ON a.ControlID = t.ControlID and a.DoorAddress = t.DoorAddress where EmployeeID = " + id.ToString();
IEnumerable<EmpAccessViewModel> data = db.Database.SqlQuery<EmpAccessViewModel>(query);
return View(data.ToList());
}
我想将 DoorName
值(门 1、门 2、门 3、门 4)绑定(bind)到复选框列表
,并让用户选择它们。之后,我想将所选门的相应 EmployeeID
、ControlID
、DoorAddress
、DoorID
值传递给 Controller 。例如,如果用户选择门 1 和门 3,那么我会将下面的这些值传递给 Controller :
| EmployeeID | ControlID | DoorAddress | DoorID |
-------------------------------------------------
| 921 | 1 | 1 | 101 |
| 921 | 1 | 3 | 103 |
-------------------------------------------------
通过在 View 中使用 razor
语法或 javascript
,我该如何做到这一点?提前致谢。
最佳答案
如果您希望 View 中的表开头有一个复选框,该复选框将传递给 Controller ,并且每行由 DoorID
唯一标识你可以尝试这样的事情。
在 View 中
<table>
@foreach (var item in Model)
{
<tr>
<td><input type="checkbox" value="@item.DoorID" name="doorid" /></td>
<td>@item.EmployeeID</td>
<td>@item.ControlID</td>
<td>@item.DoorName</td>
</tr>
}
</table>
在 Controller 中
public void ControllerName(int[] doorid)
{
foreach(var item in doorid)
//do something
}
关于javascript - 将 Model.ID 绑定(bind)到复选框列表并将 Model.X、Model.Y 等属性发布到 Controller,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35311244/
我是一名优秀的程序员,十分优秀!