我正在使用 Http 处理程序来本地化我的应用程序中使用的 javascript 文件:请参阅:Localize text in JavaScript files in ASP.NET
我想使用提供的处理程序,所以我做了以下事情:
1) 在 Global.asax 中使用此代码忽略路由 - 我已将routes.IgnoreRoute("{resource}.js.axd/{*pathInfo}");
代码行添加到RegisterRoutes
方法中,因此它看起来像这样:
public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.IgnoreRoute("{resource}.js.axd/{*pathInfo}");
routes.MapRoute(
"Default", // Route name
"{controller}/{action}/{id}", // URL with parameters
new { controller = "Home", action = "Index", id = UrlParameter.Optional } // Parameter defaults
);
}
2) 我<add path="*.js.axd" verb="*" type="CamelotShiftManagement.HttpHandlers.ScriptTranslator" />
在 Views 文件夹中的 web.confing 文件中添加了一行,如下所示:
<system.web>
<httpHandlers>
<add path="*.js.axd" verb="*" type="CamelotShiftManagement.HttpHandlers.ScriptTranslator" />
<add path="*" verb="*" type="System.Web.HttpNotFoundHandler"/>
</httpHandlers>
然而,当我尝试访问以下 URL 时,我得到一个Page not found错误:
http://camelotshiftmanagement.com/Scripts/Administration/OrganizationalStructure.js.axd
我在这里做错了什么?
进度: 好的,所以我发现了我犯的一个尴尬的错误......出于某种原因,我认为添加处理程序时
*.js.axd
会找到文件,但实际上并没有,因为文件被命名为OrganizationalStructure.js
没有.axd
扩展名。这就是404 错误的原因,但现在我从服务器收到一个不同的错误,我再次需要你的帮助。
http://camelotshiftmanagement.com/Scripts/Administration/OrganizationalStructure.js.axd
这次访问产生了不同的错误: 404.17 请求的内容似乎是脚本,不会由静态文件处理程序提供服务。
附加错误信息
Server Error in Application "CAMELOTSHIFTMANAGEMENT.COM"
Internet Information Services 7.5
Error Summary
HTTP Error 404.17 - Not Found
The requested content appears to be script and will not be served by the static file handler.
Detailed Error Information
Module: "StaticFileModule"
Notification: "ExecuteRequestHandler"
Handler: "StaticFile"
Error Code: "0x80070032"
Requested URL: "http://camelotshiftmanagement.com:80/Scripts/Administration/OrganizationalStructure.js.axd"
Physical Path: "C:\Code\CamelotShiftManagement\CamelotShiftManagement\Scripts\Administration\OrganizationalStructure.js.axd"
Logon Method: "Anonymous"
Logon User: "Anonymous"
Most likely causes:
The request matched a wildcard mime map. The request is mapped to the static file handler. If there were different pre-conditions, the request will map to a different handler.
Things you can try:
If you want to serve this content as a static file, add an explicit MIME map.
好吧,我在这里已经超越了我的联盟......我不明白为什么我的自定义处理程序没有被调用,而是调用了一个StaticFile处理程序。