MiniProfiler不会加载,因为未找到探查器路由

问题描述 投票:0回答:1

我安装了MiniProfiler.Mvc5 nuget并放入以下内容:

web.config:

  <system.webServer>
    <modules runAllManagedModulesForAllRequests="true" />
  </system.webServer>

RegisterGlobalFilters:

filters.Add(new StackExchange.Profiling.Mvc.ProfilingActionFilter());

Global.asax.cs

void Application_Start()
{
    MiniProfiler.Configure(new MiniProfilerOptions
    {
        RouteBasePath = "~/profiler",
    }
    .ExcludeType("SessionFactory")
    .ExcludeMethod("Flush")
    .AddViewProfiling());

    AreaRegistration.RegisterAllAreas();
    FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
    System.Web.Http.GlobalConfiguration.Configure(WebApiConfig.Register);
    RouteConfig.RegisterRoutes(RouteTable.Routes);
    BundleConfig.RegisterBundles(BundleTable.Bundles);
}
void Application_BeginRequest()
{
    MiniProfiler.StartNew();
}
void Application_End()
{
    MiniProfiler.Current?.Stop();
}

_ Layout.cshtml

@MiniProfiler.Current.RenderIncludes()
</body>\

呈现的html:

<script async="async" id="mini-profiler" src="/profiler/includes.min.js?v=4.1.0+c940f0f28d" data-version="4.1.0+c940f0f28d" data-path="/profiler/" data-current-id="b0ff50dd-5d1d-4fc2-8bac-50d8f316fb03" data-ids="b0ff50dd-5d1d-4fc2-8bac-50d8f316fb03" data-position="Left" data-authorized="true" data-max-traces="15" data-toggle-shortcut="Alt+P" data-trivial-milliseconds="2.0" data-ignored-duplicate-execute-types="Open,OpenAsync,Close,CloseAsync"></script>

http://localhost:64755/profiler/includes.min.js?v=4.1.0+c940f0f28d上找不到404

asp.net-mvc mvc-mini-profiler
1个回答
0
投票

handlers下的web.config中添加此system.webServer标签:

<handlers>
    <add name="MiniProfiler" path="profiler/*" verb="*" type="System.Web.Routing.UrlRoutingModule" resourceType="Unspecified" preCondition="integratedMode" />
</handlers>
© www.soinside.com 2019 - 2024. All rights reserved.