@foreach (var item in Model.AllManagementActions)
{
<tr>
<td>
@Html.DisplayFor(modelItem => item.Id)
</td>
<td>
@Html.DisplayFor(modelItem => item.Name)
</td>
我想将所有这些值传递给我的控制器。ID、名称等。我不能只传递项目本身吗?这是我当前的代码,但它不起作用。
<a class="complete" title="My Action" data-url="@Url.Action("Submit", "Period", new { tpId = Model.Id ,it = item})" style="cursor: pointer;">
如果我通过 item.name、item.id、item.number 等,它就可以工作
我可以通过模型吗?