MVC 2 部分编辑/创建返回错误

发布于 2024-09-25 13:47:38 字数 427 浏览 2 评论 0原文

我有一个关于 MVC 2 和返回部分视图的问题:

我有两个用于创建和编辑用户的视图,这两个视图都使用部分视图,因此我可以重用表单字段。 UserPartial.ascx、EditUser.aspx、CreateUser.aspx

我在控制器 post 方法 (EditCreateUser) 中得到了一些逻辑,它可以确定它是正在提交的新用户还是现有用户,并且效果很好。

问题是当我尝试返回编辑后的用户时:return View(user)。 MVC 抱怨 EditCreateUser 文件不存在。但这只是方法名称,我想将对象返回到我已经所在的 EditUser 视图。

我可以使用 RedirectToAction 但我宁愿不使用,因为如果我想在发生某些错误时返回相同的对象,也会出现此问题。

任何关于如何做到这一点的想法或一些正确方向的指示都会很棒。 谢谢

I got a question about MVC 2 and returning views for partials:

I got two views for creating and editing a user, the views both uses a partial so i can reuse the form fields.
UserPartial.ascx, EditUser.aspx, CreateUser.aspx

I got some logic in the controller post method (EditCreateUser) which finds out if its a new or existing user which is beeing submitted and this works fine.

The problem is when I try to return the edited user: return View(user). MVC complains about EditCreateUser file not existing. But thats only the method name, i want to return the object to the EditUser view which I am already on.

I could use RedirectToAction but i rather not because this problem would occur also if i want to return the same object when some errors has occured.

Any ideas on how to do this or some pointers in the right direction would be awesome.
Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

反目相谮 2024-10-02 13:47:38

在名为 EditCreateUser 的操作方法中,语句 return View(user) 默认情况下将查找与该操作同名的视图。您需要 return View("EditUser", user)

Within an action method named EditCreateUser, the statement return View(user) will by default look for a view with the same name as the action. You need return View("EditUser", user)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文