摘要: Promise封装 一、ES5 构造函数版 Promise对象 /** * promise封装 es5版本 */ function Mypromise (callback) { const _this = this this.value = undefined this.status = 'pend 阅读全文
posted @ 2020-09-07 19:13 Walker-lyl 阅读(508) 评论(0) 推荐(0) 编辑