部分视图/RenderAction 在模型验证错误时返回 404

发布于 2024-12-17 03:22:06 字数 556 浏览 1 评论 0原文

我有一个 ASP.NET MVC3 站点,我需要在侧边栏中显示一些与帐户相关的统计信息,

即布局中有一个 RenderAction

@{ Html.RenderAction("GetStats", "MyController"); }

,MyController 中的操作方法返回一些

  [HttpGet]
   public ContentResult GetStats()
   {
    ... snip (get stats from cache/db as the case may be)....
    return Content(String.Format("Your stats: {0}", stats));
   }

在正常情况下工作正常的文本。

但是,假设视图包含表单,并且如果抛出服务器端模型验证错误,则渲染操作将返回嵌入统计信息应在的位置的 404 视图。页面的其余部分显示良好,具有正确的验证消息等。

我还尝试使用常规部分视图而不是具有相同结果的 ContentResult。

I have an ASP.NET MVC3 site where I need to show some account-related stats in the sidebar

I have a RenderAction in the layout i.e.

@{ Html.RenderAction("GetStats", "MyController"); }

and the action method in MyController returns some text

  [HttpGet]
   public ContentResult GetStats()
   {
    ... snip (get stats from cache/db as the case may be)....
    return Content(String.Format("Your stats: {0}", stats));
   }

which works fine under normal circumstances.

However, say the view contains a form, and if a server-side model validation error is thrown, then the the render action returns a 404 view embedded where the stats should be. The rest of the page shows up fine, with the correct validation message etc.

I also tried using a regular partial view instead of a ContentResult with the same results.

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文