Synchronous XMLHttpRequest warning and <script>

I'm getting a warning message:

Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user's experience. For more help, check http://xhr.spec.whatwg.org/.

when performing an asynchronous AJAX request that contains a script (that has local src ), which is injected into HTML, using $.html() method. I've changed the given script to contain async="async" , yet the warning message still remains.

I've started debugging the issue to discover that my appended <script> is handled via jquery AJAX call from jQuery.ajaxTransport (http://code.jquery.com/jquery-1.10.0.js, #8663), where async is set to false (that's probably where the issue comes from).

Now - what can I do about this?

The message appears in newest version of Chrome as well as Firefox.


While I cannot provide a test case on jsfiddle, here's a test case that displays the issue:

test.html

<html>
<body>
<script type="text/javascript" src="https://code.jquery.com/jquery-2.1.3.js"></script>
<script>
$(document).ready(function(){
    $.ajax({
        url: '/response.html',
        success: function(response){
            $(document.body).html(response);
        }
    })
});
</script>
</body>
</html>

response.html

<script type="text/javascript" src="/json.js" async="async"></script>

json.js

console.log('hi');

AJAX request is not necessary to trigger the warning - all is needed is inserting a <script>

test2.html

<html>
<body>
<script type="text/javascript" src="https://code.jquery.com/jquery-2.1.3.js"></script>
<script>
$(document).ready(function(){
    $(document.body).html('<script type="text/javascript" src="/json.js" async="async"></script>');
});
</script>
</body>
</html>

It's worth noting that this has been fixed, per https://github.com/jquery/jquery/issues/2060


UPDATE: This has been fixed in jQuery 3.x. If you have no possibility to upgrade to any version above 3.0, you could use following snippet BUT be aware that now you will lose sync behaviour of script loading in the targeted content.

You could fix it, setting explicitly async option of xhr request to true :

$.ajaxPrefilter(function( options, original_Options, jqXHR ) {
    options.async = true;
});

Browsers now warn for the use of synchronous XHR. MDN says this was implemented recently:

Starting with Gecko 30.0 (Firefox 30.0 / Thunderbird 30.0 / SeaMonkey 2.27)

https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest/Synchronous_and_Asynchronous_Requests#Synchronous_request

Here's how the change got implemented in Firefox and Chromium:

  • https://bugzilla.mozilla.org/show_bug.cgi?id=969671
  • http://src.chromium.org/viewvc/blink?view=revision&revision=184788
  • As for Chrome people report this started happening somewhere around version 39. I'm not sure how to link a revision/changeset to a particular version of Chrome.

    Yes, it happens when jQuery appends markup to the page including script tags that load external js files. You can reproduce it with something like this:

    $('body').append('<script src="foo.js"></script>');
    

    I guess jQuery will fix this in some future version. Until then we can either ignore it or use A. Wolff's suggestion above.


    Even the latest jQuery has that line, so you have these options:

  • Change the source of jQuery yourself - but maybe there is a good reason for its usage
  • Live with the warning, please note that this option is deprecated and not obsolete.
  • Change your code, so it does not use this function
  • I think number 2 is the most sensible course of action in this case.

    By the way if you haven't already tried, try this out: $.ajaxSetup({async:true}); , but I don't think it will work.

    链接地址: http://www.djcxy.com/p/55338.html

    上一篇: 同步XMLHttpRequest已折旧

    下一篇: 同步XMLHttpRequest警告和<script>