MVC 2 部分编辑/创建返回错误
我有一个关于 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在名为
EditCreateUser
的操作方法中,语句return View(user)
默认情况下将查找与该操作同名的视图。您需要return View("EditUser", user)
Within an action method named
EditCreateUser
, the statementreturn View(user)
will by default look for a view with the same name as the action. You needreturn View("EditUser", user)