Synchronous XMLHttpRequest warning and [removed]

前端 未结 7 1954
猫巷女王i
猫巷女王i 2020-11-27 16:56

I\'m getting a warning message:

Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user\'s expe

7条回答
  •  不知归路
    2020-11-27 17:23

    I was plagued by this error message despite using async: true. It turns out the actual problem was using the success method. I changed this to done and warning is gone.

    success: function(response) { ... }

    replaced with:

    done: function(response) { ... }

提交回复
热议问题