ASP.NET ScriptManager 在 Chrome 中引起警告

发布于 2024-07-15 07:40:03 字数 940 浏览 8 评论 0 原文

我在 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>

I get the following warning in chrome developer javascript console:

Uncaught SyntaxError: Unexpected token
< http://.../Question.asmx/js (line 1)

Resource interpreted as script but
transferred with MIME type text/html.
http://.../Question.asmx/js

The HTML source code looks fine:

<script src="../../../Question.asmx/js" type="text/javascript"></script>

I use ASP ScriptManager to include those web services. They work fine, I was just wondering what exactly the problem is and, because I have an OCD problem, how to get rid of the warnings.

EDIT:
There is no custom handler involved. It's just a standard WebService that I include by using the scriptmanager:

<asp:ScriptManager runat="server" ID="scm1" EnablePageMethods="true" EnablePartialRendering="true" >
        <Services>
            <asp:ServiceReference Path="~/Question.asmx" />
        </Services>
    </asp:ScriptManager>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

方觉久 2024-07-22 07:40:03

第二个警告是因为您的自定义处理程序 (Question.asmx) 未正确设置要发回的资源的 MIME 类型。

您应该将以下内容添加到 ProcessRequest 方法中:

context.Response.ContentType = "text/javascript";

这也可能会消除第一个错误,因为 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:

context.Response.ContentType = "text/javascript";

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.

陌上芳菲 2024-07-22 07:40:03

不确定 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文