- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我试图在我的 MVC 应用程序中“捕获所有”500 和 404 错误,但我似乎无法掌握需要什么,即使在阅读了所有文章和问题之后也是如此。
Web.config
(这允许 500 个错误转到 ~/Views/Shared/Error.cshtml
):
<system.web>
<customErrors mode="On" redirectMode="ResponseRewrite" />
</system.web>
我已经设置了 HomeController
抛出一个错误来测试上面的设置:
public ActionResult Index()
{
//Testing errors
throw new Exception("Exception");
return View();
}
在我的 Global.asax.cs
,我有以下记录 500 个错误:
protected void Application_Error()
{
var ex = Server.GetLastError();
//Custom ExceptionLog
new ExceptionLogHelper().Add("Application_Error", Response.Status, ex);
}
现在是 404 错误:
在我的 RouteConfig.cs
,我有以下路线,但似乎无法捕获所有 404:
public class RouteConfig
{
public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.MapRoute(
name: "Error",
url: "Error/{code}",
defaults: new { controller = "Error", action = "Index", code = UrlParameter.Optional }
);
//routes.MapRoute(
// name: "Controllers",
// url: "{controller}/{action}/{id}",
// defaults: new { controller = "Error", action = "Index", code = UrlParameter.Optional }
//);
routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{id}",
defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional }
);
//Keep at bottom
routes.MapRoute("CatchAll", "{*url}", new { controller = "Error", action = "Index", name = "no-route-found", code = "404" });
}
}
CatchAll
在底部很好地捕获了所有与前面的路线不匹配的东西。
我还有很多测试场景,但困扰我的是以下 UrlParameter:
http://localhost:64275/does/not/exist/
上面的 URL 本质上是 http://localhost:64275/{controller}/{action}/{id}
我没有名为 does
的 Controller ,我认为 defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional }
将默认为 Home
Action 为 Index
的 Controller 如果没有 Controller 匹配。
另一个有效的例子:
http://localhost:64275/a/a/a/a/ (because it has 4 parts, not 3 or less)
有人可以解释我可能哪里出错了吗? ...还有什么我不明白的?
我是否应该执行这样的操作:.Net MVC Routing Catchall not working (Darin Dimitrov 的回答)
protected void Application_Error(object sender, EventArgs e)
{
Exception exception = Server.GetLastError();
HttpException httpException = exception as HttpException;
if (httpException != null)
{
RouteData routeData = new RouteData();
routeData.Values.Add("controller", "Error");
routeData.Values.Add("action", "HttpError500");
if (httpException.GetHttpCode() == 404)
{
routeData.Values["action"] = "HttpError404";
}
Server.ClearError();
Response.Clear();
IController errorController = new ErrorController();
errorController.Execute(new RequestContext(new HttpContextWrapper(Context), routeData));
}
}
最佳答案
您是正确的,因为在 http://localhost:64275/does/not/exist/
情况下命中了默认路由。但是,路由没有内置任何昂贵的反射调用来确保 Controller 在尝试创建之前存在。
但是,您可以通过创建自己的自定义 IControllerFactory
进行干预,它知道当 MVC 无法找到路由中指定的 Controller 实例时该怎么做。
public class NotFoundControllerFactory : DefaultControllerFactory
{
protected override IController GetControllerInstance(RequestContext requestContext, Type controllerType)
{
// If controller not found it will be null, so we want to take control
// of the request and send it to the ErrorController.NotFound method.
if (controllerType == null)
{
requestContext.RouteData.Values["action"] = "NotFound";
requestContext.RouteData.Values["controller"] = "Error";
return base.GetControllerInstance(requestContext, typeof(ErrorController));
}
return base.GetControllerInstance(requestContext, controllerType);
}
}
DefaultControllerFactory
接受 Controller 作为字符串,然后尝试将 Controller 名称解析为类型。如果不能,则在调用 GetControllerInstance(RequestContext, Type)
时类型为 null
。因此,我们所要做的就是检查类型是否为 null
,然后重写我们的请求,以便它实例化 ErrorController
并调用 NotFound
操作方法。
您只需要在启动时向 MVC 注册 Controller 工厂。
ControllerBuilder.Current.SetControllerFactory(new NotFoundControllerFactory());
然后,为了将所有内容联系在一起,您的 NotFound
操作方法应将状态代码设置为 404。
public class ErrorController : Controller
{
public ActionResult NotFound()
{
Response.StatusCode = (int)System.Net.HttpStatusCode.NotFound;
Response.StatusDescription = "404 Not Found";
return View();
}
}
对于操作方法,如果 Controller 上不存在操作,MVC 确实以 404 Not Found 响应。
关于c# - MVC RouteConfig "CatchAll"{*url} 不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48778587/
鉴于以下 .ts @RouteConfig([ { path: '/', name: 'root', redirectTo: ['Home'] }, { path:
我在设置 RouteConfig 文件以接受可选记录 ID 作为 URL 的一部分时遇到问题,如下例所示。 http://localhost/123 (used while debugging loc
我正在使用 Entity Framework 开发 C# ASP.NET MVC 项目。 我正在尝试使用 RouteConfig.cs 更改 url 路径 首先代码是这样的 public class
给定路由配置 @RouteConfig([ new Route({ path: '/app/index.html', name: 'default', redirectTo: ['/View1
我正在尝试按照本教程进行操作: https://angular.github.io/router/getting-started 为什么 AppController.$routeConfig 未定义?
我是 MVC 的新手,正在尝试构建我的第一个网站。我无法正确设置我的 RouteConfig 文件。我有 2 个规则适用于不同的 ActionResults。但是,只有其中一个可以正常工作。如果 Ge
最近我不得不更新我的 mvc web 应用程序,以便系统的基本实体以不同的文字显示在 UI 中。 让我们说 以前我有:“容器” 现在我被要求制作它:“Ships” 按照约定映射的 url:mysite
我的预订 Controller 有以下代码 public ActionResult Index(string id, string name) { return View(); } 和我的ro
我试图在我的 MVC 应用程序中“捕获所有”500 和 404 错误,但我似乎无法掌握需要什么,即使在阅读了所有文章和问题之后也是如此。 Web.config (这允许 500 个错误转到 ~/Vie
我正在尝试使用 ngdocs 和 grunt 记录我的 Angular WebApp。我想知道有没有一种方法可以记录路由配置,因为我觉得我的 WebApp 路由系统相当复杂,它的文档部分需要一些注意。
我正在尝试在我的 Angular2 应用程序中使用 RouteConfig。现在,我似乎无法找出我做错了什么。 我的 App 组件正在使用 router-outlet 东西,但它不起作用。 我创建了一
我认为我引用了我的解决方案中的三个文件,但我遇到了这 3 个错误 Global.asax.cs 名称“RouteConfig”在当前上下文中不存在 我错过了什么?谢谢:) using System;
我知道我可以在我的 MVC 应用程序的 RouteConfig 中更改路由: routes.MapRoute(name: "epage", url: "view/SpecificURL", defau
我正在构建一个使用 Angular 2 和纯 JavaScript 的应用程序,但我找不到任何关于如何将 RouteConfig 用于 JavaScript(不是 ts)的示例。 任何人都可以给我一个
我从 @vue/cli $> vue create my-project 创建了一个新的 vue 项目,激活了 Typescript 选项和路由器选项,并使用 $>vue add vue-next 升
我正在努力学习 Adam Freeman 的书“ASP .NET MVC”。在本书中有一章作者建议将路由放入特殊配置文件App_Start/RouteConfig.cs。它看起来不错,但我正在尝试在
我正在尝试使用 v1.4 中的 Angular 新路由器。我正在使用 typescript 。当我尝试编译时,出现以下错误。 Property '$routeConfig' does not exis
@RouteConfig 似乎已从 angular2 2.0.0-rc.1 中消失,@RouteConfig 在 @angular/router-deprecated 包中,同上在网站上记录的 api
关闭。这个问题需要debugging details .它目前不接受答案。 想改善这个问题吗?更新问题,使其成为 on-topic对于堆栈溢出。 去年关闭。 Improve this question
这是 createStackNavigator({...}) 的工作代码块, 带有 initialRouteName 的 block 被注释掉。 const navigator = createSta
我是一名优秀的程序员,十分优秀!