0

尝试使用 IIS 和 Google Chrome 使用 mini-profiler 运行我的项目时,我遇到了同样的问题,如Running MiniProfiler with runAllManagedModulesForAllRequests 设置为 false中所述。我没有更改runAllManagedModulesForAllRequests设置,只是添加了

<handlers>
    <add name="MiniProfiler" path="mini-profiler-resources/*" verb="*" type="System.Web.Routing.UrlRoutingModule" resourceType="Unspecified" preCondition="integratedMode" />
</handlers>

web.config. 现在,在尝试运行站点后,我收到了jQueryMP is undefined. 我能做些什么来解决这个问题?

Google Chrome 开发人员工具栏显示 include.js 中发生错误

我有 MiniProfiler v 2.0.2

4

1 回答 1

0

我找到了解决方案。我将我的应用程序中使用的 jQuery 版本更改为 1.7.1,然后调用MiniProfiler.RenderIncludes(),因为MiniProfiler.RenderIncludes(null, null, null, null, null, true, false)探查器将使用我的 jquery 公开它。

于 2012-10-18T09:12:38.613 回答