我已按照project page所述设置了MVC Mini Profiler,并且确实正在页面上写入包含。
问题是,我的应用程序位于http://localhost:8080/web
,并且分析器编写的标记包括如下所示:
<link rel="stylesheet/less" type="text/css" href="/mini-profiler-includes.less?v=2.0.4177.17902">
<script type="text/javascript" src="/mini-profiler-includes.js?v=2.0.4177.17902"></script>
<script type="text/javascript"> jQuery(function() { MiniProfiler.init({ id:'fb4dc30e-c1aa-4be6-902c-ef2812dd1fe2', renderDirection:'left' }); } ); </script>
这些当然会产生404错误,但是如果我导航到/web/mini-profiler-includes.less?
,它会加载正常。
可以找到创建该字符串的来源here:
// MiniProfilerHandler.cs
/// <summary>
/// Understands how to route and respond to MiniProfiler UI urls.
/// </summary>
public class MiniProfilerHandler : IRouteHandler, IHttpHandler
{
internal static HtmlString RenderIncludes(MiniProfiler profiler, RenderPosition? position = null, bool showTrivial = false, bool showTimeWithChildren = false)
{
const string format =
@"<link rel=""stylesheet/less"" type=""text/css"" href=""{0}mini-profiler-includes.less?v={1}"">
<script type=""text/javascript"" src=""{0}mini-profiler-includes.js?v={1}""></script>
<script type=""text/javascript""> jQuery(function() {{ MiniProfiler.init({{ id:'{2}', path:'{0}', renderDirection:'{3}', showTrivial: {4}, showChildrenTime: {5} }}); }} ); </script>";
var pos = position ?? (MiniProfiler.Settings.RenderPopupButtonOnRight ? RenderPosition.Right : RenderPosition.Left);
var result = profiler == null ? "" : string.Format(format,
EnsureEndingSlash(HttpContext.Current.Request.ApplicationPath),
MiniProfiler.Settings.Version,
profiler.Id,
pos.ToString().ToLower(),
showTrivial ? "true" : "false",
showTimeWithChildren ? "true" : "false");
return new HtmlString(result);
}
// rest of the code
}
为什么Request.ApplicationPath不返回我的应用程序的路径?我做错了什么,还是应该在mvc-mini-profiler页面上提出问题?
编辑:为了让事情变得更奇怪,我在MiniProfiler.RenderIncludes()
电话上设置了一个断点,并检查了当时HttpContext.Current.Request.ApplicationPath
的值是多少,它是"/web"
!非常神秘。
编辑2 :看起来他们可能在最新版本(2小时前:))中添加了对虚拟路径的支持,而NuGet包(我安装它的方式)并不完全最新。调查...
答案 0 :(得分:2)
在此帖子中提取最新的源代码(this commit),构建项目,抓取DLL并引用它而不是使用项目的NuGet包修复了问题。
编辑:截至目前,NuGet软件包现在是最新的提交,所以NuGet离开!