摘要:
ES6 axios执行原理 Axios 是一个基于 promise 的 HTTP 库,可以用在浏览器和 node.js 中 http://www.axios-js.com/zh-cn/docs/ 1. axios.get('1111.json') .then(response => { consol 阅读全文
摘要:
ES6 async, await, promise 综合例子 new Promise(主线程代码).then(成功微任务, 失败微任务); sync 替代promise await 替代then 1. <div id="aa"></div> <script type="text/javascript 阅读全文