image
alpha

代码写的好,bug改到老

Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user's experience. 警告解决方案

alpha    2020-02-16 18:56

        有时候,浏览器加载网站,在控制台会出现 jquery.min.js:4 [Deprecation] Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user's experience. For more help, check https://xhr.spec.whatwg.org/. 的警告,原因是在某个js 脚本中,又额外动态引用了其他 js 文件。因为 ajax 的请求通常是异步的,如果需要在 js 里使用 ajax 同步加载 js 资源,就会出现上述警告。

        解决方案:查找 js 脚本引用其他位置 js 文件的代码,删除掉,并将库文件直接以静态资源方式加入到文件的脚本声明中。例如:
<script type="text/javascript" src="/static/js/member/bootstrap.min.js"></script>
        这样就可以去除警告提示了。
 
Last Modified: 2020-02-16 19:02
Views: 2.8K

[[total]] comments

Post your comment
  1. [[item.time]]
    [[item.user.username]] [[item.floor]]Floor
  2. Click to load more...
  3. Post your comment