gpt4 book ai didi

c# - 在 c#/html 上使用 Entity Framework 时如何将多个参数传递给 Actionlink()

转载 作者:行者123 更新时间:2023-11-28 02:40:47 25 4
gpt4 key购买 nike

在我的项目中,我使用 MVC 设计并将数据库与 Entity Framework 结合使用。我想更新数据库中的一些单元格,但我不确定如何将它们传递给 Controller ​​进行更新。

在“更新 View ”页面上,用户可以使用

更改单元格的内容

<td>
<div contenteditable>
@Html.DisplayFor(Model => Model.HeadLine)
</td>

但是当我尝试将更新后的数据发送到 Controller 时,我只能理解如何为模型发送一个 id(因为我无法传递模型本身)。

我不确定我做错了什么 - 我在这里尝试传递一个 ID,以便 Controller 知道要更改什么和新名称 - 我收到编译错误。

<p>
@Html.Action("Update This Post >>", "Update", new { param1 = Model.ID, param2 = Model.Author });
</p>

Controller 签名是:

 [HttpPost]
public ActionResult Update(int id, string author)

最佳答案

试试这个:

<p>
@Html.ActionLink("Update This Post >>","YourController", "Update", new { id = Model.ID, author = Model.Author });
</p>

关于c# - 在 c#/html 上使用 Entity Framework 时如何将多个参数传递给 Actionlink(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44647448/

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