如何将 ModelErrors 与重定向一起传递?
ASP.NET MVC 2.0
我正在执行 Post-Redirect-Get,如果我在发布时遇到错误,我需要包含 ModelErrors 以便沿 -Redirect-Get 路线行驶。 我通过“TempData”发送它:
TempData["modelErors"] =
ModelState.
Where(item => item.Value.Errors.Count > 0).
ToDictionary(
item => item.Key,
item => item.Value.Errors.Select(error=>error.ErrorMessage).ToList()
);
然后将其重新插入 ModelState:
if (TempData.ContainsKey("modelErors")) {
foreach (var errors in (IDictionary<string,IList<string>>) TempData["modelErors"]) {
foreach (var error in errors.Value) {
ModelState.AddModelError(errors.Key, error);
}
}
}
有更好的方法吗?
ASP.NET MVC 2.0
I'm doing Post-Redirect-Get, if I get errors on post, I need to include ModelErrors along for the ride to along -Redirect-Get route.
I send it through 'TempData':
TempData["modelErors"] =
ModelState.
Where(item => item.Value.Errors.Count > 0).
ToDictionary(
item => item.Key,
item => item.Value.Errors.Select(error=>error.ErrorMessage).ToList()
);
And then reinsert it into a ModelState:
if (TempData.ContainsKey("modelErors")) {
foreach (var errors in (IDictionary<string,IList<string>>) TempData["modelErors"]) {
foreach (var error in errors.Value) {
ModelState.AddModelError(errors.Key, error);
}
}
}
Is there a better way?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
成功发布后,您实际上应该只进行 PRG。否则,如果出现错误,可以从帖子中返回。
否则,您需要使用 cookie、会话或请求变量来存储下一个请求的信息。
在 ASP.NET MVC2 中,默认情况下我认为 TempData 使用会话状态来存储下一个请求的信息。
You should really only PRG after a successful post. Otherwise it's fine to return from the post if there's an error.
Otherwise you need to use cookies, session or request variables to store that information for the next request.
In ASP.NET MVC2 by default I think TempData uses Session state to store the information for the next request.
我认为最干净的解决方案是像这样使用 ActionFilterAttribute :
只需将属性放在引发错误的操作和接收错误的操作的顶部,如下所示:
这就像干净的魅力一样可管理的代码。
希望这有帮助!
朱利安
I think that the most cleaner solution was to use ActionFilterAttribute like this :
After you just have to put your attribute on the top of the action that throw the error and the action that received the error like this :
And that works like a charm with clean manageable code.
Hope this Help!
Julien