gpt4 book ai didi

asp.net-mvc - MVC actionlink posting 复杂类型列表

转载 作者:行者123 更新时间:2023-12-02 02:34:15 25 4
gpt4 key购买 nike

我有一个 Action 链接,单击它会将对象列表传递给 Controller ​​ Action 。

示例:

查看:

Html.ActionLink("TestLink", "TestMethod", "Test", Model.SampleList, null)

测试 Controller :

public ActionResult TestMethod(List<SampleList> sampleList)  
{
return View(sampleList);
}

当我这样做时,我得到一个空样本列表。我可以很好地传递单个复杂对象,而不是它的集合。我需要正确的路由吗?我这样做的原因是我没有传递 id 并在 Controller 操作中查找,我只是传递数据。

最佳答案

当您执行表单发布时,可以查看 this blog post想要查询更多的信息。不过,您可能无法使用其中一种 HtmlHelper 方法,该帖子指出:

Currently, we don’t have any helpers for generating the form, so this is a very manual process.

不过,没有什么能阻止您编写自己的助手。

关于asp.net-mvc - MVC actionlink posting 复杂类型列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2509324/

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