ASP.NET ScriptManager 在 Chrome 中引起警告
我在 chrome 开发人员 javascript 控制台中收到以下警告:
未捕获的语法错误:意外的标记 < http://.../Question.asmx/js(第 1 行)
资源被解释为脚本,但是 使用 MIME 类型 text/html 传输。 http://.../Question.asmx/js
HTML 源代码看起来不错:
<script src="../../../Question.asmx/js" type="text/javascript"></script>
我使用 ASP ScriptManager 来包含这些 Web 服务。 它们工作得很好,我只是想知道问题到底是什么,因为我有强迫症问题,所以如何摆脱警告。
编辑: 不涉及任何自定义处理程序。 它只是我使用脚本管理器包含的一个标准 WebService:
<asp:ScriptManager runat="server" ID="scm1" EnablePageMethods="true" EnablePartialRendering="true" >
<Services>
<asp:ServiceReference Path="~/Question.asmx" />
</Services>
</asp:ScriptManager>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
第二个警告是因为您的自定义处理程序 (Question.asmx) 未正确设置要发回的资源的 MIME 类型。
您应该将以下内容添加到 ProcessRequest 方法中:
这也可能会消除第一个错误,因为 HTML 页面应该以
The second warning is because your custom handler (Question.asmx) is not setting the mime type of the resource you're sending back correctly.
You should add the following to the ProcessRequest method:
That will probably also get rid of the first error, as an HTML page should start with a <!Doctype element to be valid, which is what I believe that error is complaining about.
不确定 Chrome 中错误的原因是什么,但避免该错误的一种方法是将服务代理的 javascript (question.asmx/js) 直接嵌入到您的页面中。 这意味着客户端下载量更大,但到服务器的往返次数减少了一次(或减少两次,具体取决于您站点的身份验证方法)。
只需在 ServiceReference 标记中设置 InlineScript="true"
有关详细信息,请参阅 http://weblogs.asp.net/dwahlin/archive/2006/12/28/understanding-asp-net-ajax-web-service-proxies。 ASPX
Not sure what is the cause of the error in Chrome, but one way to avoid it would be to embed the javascript for the service proxy (question.asmx/js) directly in your page. This means a larger client download but one less round trip to the server (or two less trips depending on your site's authentication method).
Just set InlineScript="true" in the ServiceReference tag
For a bit more info, see http://weblogs.asp.net/dwahlin/archive/2006/12/28/understanding-asp-net-ajax-web-service-proxies.aspx
也许这就是你需要的? http://blog.lavablast.com/post/2008/10/Gotcha-WebKit-%28Safari-3-and-Google-Chrome%29-Bug-with-ASPNET-AJAX.aspx
maybe this is what you need? http://blog.lavablast.com/post/2008/10/Gotcha-WebKit-%28Safari-3-and-Google-Chrome%29-Bug-with-ASPNET-AJAX.aspx