admin管理员组文章数量:1343328
I know this question was posted so many times in here, but I tried all the solutions I could find on stack overflow and none of them worked. I'm just trying to make a simple ajax query to load a page inside a div. Just as simple as:
function loadHome(){
$('#container').html('<div class="loader"></div>');
$.ajax({
type: "GET",
url: "home.php",
success: function(msg){
$("#container").html(msg);
}
});
}
And on the console log I get
Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user's experience. For more help, check /
And some of my javascript on the home page will not work unless I reload the page. That page is by default loading home.php
inside the div already, but I want it to load other pages and then when I click "home" it should load normally, and that's not happening because of that error. I already tried to use "async: true", didn't work. I don't know what to do.
I know this question was posted so many times in here, but I tried all the solutions I could find on stack overflow and none of them worked. I'm just trying to make a simple ajax query to load a page inside a div. Just as simple as:
function loadHome(){
$('#container').html('<div class="loader"></div>');
$.ajax({
type: "GET",
url: "home.php",
success: function(msg){
$("#container").html(msg);
}
});
}
And on the console log I get
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/
And some of my javascript on the home page will not work unless I reload the page. That page is by default loading home.php
inside the div already, but I want it to load other pages and then when I click "home" it should load normally, and that's not happening because of that error. I already tried to use "async: true", didn't work. I don't know what to do.
-
try by using
async: false
– Parth Trivedi Commented Jan 6, 2016 at 7:46 -
@ParthTrivedi - No!!!!!!
async:false
is a horrible remendation. It's a hack, leads to bad user experience and is not needed with proper async coding. – jfriend00 Commented Jan 6, 2016 at 7:47 - @ParthTrivedi that's why the warning arises. – Jai Commented Jan 6, 2016 at 7:47
- The code you show in your question does not lead to the message you show about synchronous XMLHttpRequest so something is wrong in your question. – jfriend00 Commented Jan 6, 2016 at 7:48
-
Try finding if you used any
.ajaxSetup()
method and check forasync:false
there. – Jai Commented Jan 6, 2016 at 7:49
2 Answers
Reset to default 6You should use local jquery then from cdn
and also
To avoid this warning, do not use:
async: false
in any of your $.ajax()
calls. This is the only feature of XMLHttpRequest
that's deprecated.
The default is async: true
, so if you never use this option at all, your code should be safe if the feature is ever really removed (it probably won't be -- it may be removed from the standards, but I'll bet browsers will continue to support it for many years).
Referance
I also notice the same problem when using the .load() function.
The method seems not deprecated by jquery but it causes Synchronous XMLHttpRequest alert too.
Prefer $.get(), $.post(), or $.ajax() methods instead.
本文标签:
版权声明:本文标题:javascript - Synchronous XMLHttpRequest on the main thread is deprecated... Tried many different solution - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743696862a2523647.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论