[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/.
翻译:在主线程同步XMLHttpRequest是不赞成的,因为对最终用户的体验有不利影响。更多帮助,检查HTTP:/ / XHR。spec.whatwg。org /
以上警告信息在ajax方法执行同步操作(等有了返回值才执行下面的js,会短暂阻断程序继续执行)的时候出现,即:async:false。同步执行AJAX不影响程序的正常执行。当然,如果业务层面允许,推荐异步执行AJAX,即将async属性设置为true。(当然,ajax()方法async缺省下为true)
Done!