**简易Promise:**简易`Promise`并不完全符合`Promise/A+`规范,但面试时能写出简易`Promise`算是已经过关了。
```
function MyPromise(fn) {
let _this = this _this.state = 'pending'_this.value = null _this.reson = null _this.onFulfilledCallbacks = [] _this.onRejectedCallbacks = []
function resolve(value) {
if (_this.state === 'pending') {
_this.value = value _this.state = 'fulled'
_this.onFulfilledCallbacks.map(fn = >fn())
}
}
function reject(reson) {
if (_this.state === 'pending') {
_this.reson = reson _this.state = 'rejected'
_this.onRejectedCallbacks.map(fn = >fn())
}
}
fn(resolve, reject)
}
MyPromise.prototype.then = function(suc, err) {
let _this = this
if (_this.state === 'pending') {
_this.onFulfilledCallbacks.push(() = >{
suc(_this.value);
});
_this.onRejectedCallbacks.push(() = >{
err(_this.value);
})
}
if (_this.state === 'fulled') {
suc(_this.value)
}
if (_this.state === 'rejected') {
err(_this.reson)
}
}
let p = new MyPromise(function(resolve, reject) {
setTimeout(() = >{
resolve('oj8k')
},
1000)
}) p.then(suc = >{
console.log(suc)
},
err = >{
console.log(err)
});
```
- 前言
- 工作中的一些记录
- 破解快手直播间的webSocket的连接
- 快手「反」反爬虫的研究记录
- HTML AND CSS
- 遇到的一些还行的css笔试题
- css常见面试题
- JavaScript 深度剖析
- ES6到ESNext新特性
- 关于http与缓存
- 关于页面性能
- 关于浏览器的重排(reflow、layout)与重绘
- 手写函数节流
- 手写promise
- 手写函数防抖
- 手写图片懒加载
- 手写jsonp
- 手写深拷贝
- 手写new
- 数据结构和算法
- 前言
- 时间复杂度
- 栈
- 队列
- 集合
- 字典
- 链表
- 树
- 图
- 堆
- 排序
- 搜索
- Webpack
- Webpack原理与实践
- Vue
- Vuejs的Virtual Dom的源码实现
- minVue
- Vuex实现原理
- 一道关于diff算法的面试题
- Vue2源码笔记:源码目录设计
- vue-router源码分析(v4.x)
- React及周边
- 深入理解redux(一步步实现一个 redux)
- React常见面试题汇总
- Taro、小程序等
- TypeScript
- CI/CD
- docker踩坑笔记
- jenkins
- 最后