为什么我的 ASP.NET Action 寻找错误的视图?

发布于 2024-10-09 15:16:43 字数 717 浏览 0 评论 0原文

我有一个简单的操作:

    public ActionResult CommentError(string error)
    {
        return View(error);
    }

我有一个名为 CommentError.ascx 的简单部分视图:

<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl<String>" %>

<%: Model %>

当我通过转到 myurl.com/find/Comments/CommentError 直接浏览到视图时,视图显示正常...没有错误。

但是,当我访问 myurl.com/find/Comments/CommentError?error=SomeErrorString 时,它不是将查询字符串绑定到 string error,而是查找名为 <代码>SomeErrorString.ascx。

为什么会发生这种情况?

编辑
注意,我确实有一个自定义的 global.asax,如我正在使用的路径所示(/find/Comments/CommentError ::: /find/{controler}/{action} )

I have a simple action:

    public ActionResult CommentError(string error)
    {
        return View(error);
    }

I have a simple partial view called CommentError.ascx:

<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl<String>" %>

<%: Model %>

When I browse to the view directy by going to myurl.com/find/Comments/CommentError the view displays fine... no errors.

But, when I go to myurl.com/find/Comments/CommentError?error=SomeErrorString, instead of binding the querystring to string error, it looks for a view called SomeErrorString.ascx.

Why is this happening?

Edit
Note, i do have a custom global.asax as indicated by the paths I'm using (/find/Comments/CommentError ::: /find/{controler}/{action})

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

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

发布评论

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

评论(3

澜川若宁 2024-10-16 15:16:43

如前所述,MVC 正在寻找与字符串参数同名的视图。为了避免这种情况,您需要将其转换为一个对象......

public ActionResult CommentError(string error)
{
    return View((object)error);
}

As mentioned, MVC is looking for a view named the same as the string parameter. To avoid this, you need to cast it to an object...

public ActionResult CommentError(string error)
{
    return View((object)error);
}

通常,您应该避免传递给 View() 帮助器的 Model 对象为 string 类型。这就是你的错误的原因。

MVC 正在寻找一个View命名您的字符串参数。因为这就是 View() 的最佳匹配重载:View(string) 重载使用 string 参数作为视图的名称加载。

您应该将模型数据(字符串)封装在自定义类型中,或者通过 ViewData 集合传递该信息。

You generally should avoid the Model object you pass to the View() helper being of type string. This is the cause of your error.

MVC is looking for a View named what your string parameter is. Because that's what the best matching overload of View() is: the View(string) overload uses the string parameter as the name of the view to load.

You should encapsulate your Model data (the string) in a custom type, or pass that info via the ViewData collection instead.

給妳壹絲溫柔 2024-10-16 15:16:43

作为替代答案(仅用于教育),您可以调用 View() 的不同重载

return View("CommentError", null, error);

As an alternative answer (just for education) you could just invoke a different overload of View()

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