最后
面试题千万不要死记,一定要自己理解,用自己的方式表达出来,在这里预祝各位成功拿下自己心仪的offer。
开源分享:【大厂前端面试题解析+核心总结学习笔记+真实项目实战+最新讲解视频】
let isSubscribed = true
ensureCanMutateNextListeners()
// 直接将监听的函数放进nextListeners里
nextListeners.push(listener)
return function unsubscribe() {
// 如果已经移除了就直接返回
if (!isSubscribed) {
return
}
isSubscribed = false
ensureCanMutateNextListeners()
// 没有移除的话,先找到位置,通过splice移除
const index = nextListeners.indexOf(listener)
nextListeners.splice(index, 1)
}
}
在使用的时候就可以:
const unsubscribe = store.subscribe(() =>
console.log(store.getState())
)
unsubscribe()
dispatch
dispatch
dispatch 作为一个重点函数~ 其实它的作用就是触发状态的改变。
参数:action(object),它是一个描述发生了什么的对象,其中type是必须的属性。
返回:这个传入的object
function dispatch(action) {
if (!isPlainObject(action)) {
throw new Error(
'Actions must be plain objects. ’ +
‘Use custom middleware for async actions.’
)
}
//
if (typeof action.type === ‘undefined’) {
throw new Error(
'Actions may not have an undefined “type” property. ’ +
‘Have you misspelled a constant?’
)
}
// 防止多次dispatch请求同时改状态,一定是前面的dispatch结束之后,才dispatch下一个
if (isDispatching) {
throw new Error(‘Reducers may not dispatch actions.’)
}
try {
isDispatching = true
currentState = currentReducer(currentState, action)
} finally {
isDispatching = false
}
// 在dispatch的时候,又将nextListeners 赋值回currentListeners,
const listeners = currentListeners = nextListeners
for (let i = 0; i < listeners.length; i++) {
const listener = listeners[i]
listener()
}
return action
}
在上面一系列完成之后,需要初始化appState的状态。当INIT action被dispatched 的时候,每个reducer都会return回它的初始状态
dispatch({ type: ActionTypes.INIT })
自问自答环节
======
为什么createStore中既存在currentListeners也存在nextListeners?
在上面的源码中,createStore函数为了保存store的订阅者,不仅保存了当前的订阅者currentListeners而且也保存了nextListeners。createStore中有一个内部函数ensureCanMutateNextListeners:
function ensureCanMutateNextListeners() {
if (nextListeners === currentListeners) {
nextListeners = currentListeners.slice()
}
}
这个函数实质的作用是确保可以改变nextListeners,如果nextListeners与currentListeners一致的话,将currentListeners做一个拷贝赋值给nextListeners,然后所有的操作都会集中在nextListeners,比如我们看订阅的函数subscribe:
function subscribe(listener) {
// …
let isSubscribed = true
ensureCanMutateNextListeners()
nextListeners.push(listener)
return function unsubscribe() {
// …
ensureCanMutateNextListeners()
const index = nextListeners.indexOf(listener)
nextListeners.splice(index, 1)
}
我们发现订阅和解除订阅都是在nextListeners做的操作,然后每次dispatch一个action都会做如下的操作:
function dispatch(action) {
try {
isDispatching = true
currentState = currentReducer(currentState, action)
} finally {
isDispatching = false
}
// 相当于currentListeners = nextListeners const listeners = currentListeners
const listeners = currentListeners = nextListeners
for (let i = 0; i < listeners.length; i++) {
const listener = listeners[i]
listener()
}
return action
}
我们发现在dispatch中做了const listeners = currentListeners = nextListeners
,相当于更新了当前currentListeners
为nextListeners
,然后通知订阅者,到这里我们不禁要问为什么要存在这个nextListeners?
其实代码中的注释也是做了相关的解释:
The subscriptions are snapshotted just before every dispatch() call.If you subscribe or unsubscribe while the listeners are being invoked, this will not have any effect on the dispatch() that is currently in progress.However, the next dispatch() call, whether nested or not, will use a more recent snapshot of the subscription list.
来让我这个六级没过的渣渣翻译一下: 订阅者(subscriptions
)在每次dispatch()
调用之前都是一份快照(snapshotted
)。如果你在listener
被调用期间,进行订阅或者退订,在本次的dispatch()
过程中是不会生效的,然而在下一次的dispatch()
调用中,无论dispatch
是否是嵌套调用的,都将使用最近一次的快照订阅者列表。用图表示的效果如下:
我们从这个图中可以看见,如果不存在这个nextListeners
这份快照的话,因为dispatch
导致的store
的改变,从而进一步通知订阅者,如果在通知订阅者的过程中发生了其他的订阅(subscribe
)和退订(unsubscribe
),那肯定会发生错误或者不确定性。例如:比如在通知订阅的过程中,如果发生了退订,那就既有可能成功退订(在通知之前就执行了nextListeners.splice(index, 1))
或者没有成功退订(在已经通知了之后才执行了nextListeners.splice(index, 1))
,这当然是不行的。因为nextListeners
的存在所以通知订阅者的行为是明确的,订阅和退订是不会影响到本次订阅者通知的过程。
还是看不懂是什么意思?????一个简单粗俗的例子:
当在执行这段代码到第三个listener的时候:
for (let i = 0; i < listeners.length; i++) {
const listener = listeners[i]
listener()
}
你突然把第2个listener给splice了。这样的话此时上面的循环本来是执行完第三个要执行第四个了,但是由于数组中的第2个listener被splice掉了,所以数组后面的元素都要往前移动一个位置,这时数组的第四个listener就移动到原先第三个的位置了,数组的第五个listener就移动到原先第四个的位置了,因此循环本要执行第四个的,结果由于第四个往前移动了,实际执行的是原先的第五个,所以导致原先的第四个没有被执行。。
没错,上面讲的就是这样的!!!!哈哈哈明白了吧!!!!
但是这里又有一个问题了:
JavaScript不是单线程的吗?为啥在执行循环的时候,会执行unsubscribe()操作
百思不得其解的情况下,去Redux项目下开了一个issue,得到了维护者的回答:
得了,我们再来看看测试相关的代码吧。看完之后我了解到了。的确,因为JavaScript是单线程语言,不可能出现出现想上述所说的多线程场景,但是我忽略了一点,执行订阅者函数时,在这个回调函数中可以执行退订或者订阅事件。例如:
const store = createStore(reducers.todos)
const unsubscribe1 = store.subscribe(() => {
const unsubscribe2 = store.subscribe(()=>{})
})
这不就实现了在通知listener的过程中混入订阅subscribe与退订unsubscribe吗?
为什么Reducer中不能进行dispatch操作?
我们知道在reducer函数中是不能执行dispatch操作的。一方面,reducer作为计算下一次state的纯函数是不应该承担执行dispatch这样的操作。另一方面,即使你尝试着在reducer中执行dispatch,也并不会成功,并且会得到"Reducers may not dispatch actions."的提示。因为在dispatch函数就做了相关的限制:
function dispatch(action) {
if (isDispatching) {
throw new Error(‘Reducers may not dispatch actions.’)
}
try {
isDispatching = true
currentState = currentReducer(currentState, action)
} finally {
isDispatching = false
}
//…notice listener
}
在执行dispatch时就会将标志位isDispatching置为true。然后如果在currentReducer(currentState, action)执行的过程中由执行了dispatch,那么就会抛出错误(‘Reducers may not dispatch actions.’)。之所以做如此的限制,是因为在dispatch中会引起reducer的执行,如果此时reducer中又执行了dispatch,这样就落入了一个死循环,所以就要避免reducer中执行dispatch。
前端资料汇总
开源分享:【大厂前端面试题解析+核心总结学习笔记+真实项目实战+最新讲解视频】
我一直觉得技术面试不是考试,考前背背题,发给你一张考卷,答完交卷等通知。
首先,技术面试是一个 认识自己 的过程,知道自己和外面世界的差距。
更重要的是,技术面试是一个双向了解的过程,要让对方发现你的闪光点,同时也要 试图去找到对方的闪光点,因为他以后可能就是你的同事或者领导,所以,面试官问你有什么问题的时候,不要说没有了,要去试图了解他的工作内容、了解这个团队的氛围。
找工作无非就是看三点:和什么人、做什么事、给多少钱,要给这三者在自己的心里划分一个比例。
最后,祝愿大家在这并不友好的环境下都能找到自己心仪的归宿。
享:【大厂前端面试题解析+核心总结学习笔记+真实项目实战+最新讲解视频】](https://bbs.csdn.net/forums/4304bb5a486d4c3ab8389e65ecb71ac0)**
我一直觉得技术面试不是考试,考前背背题,发给你一张考卷,答完交卷等通知。
首先,技术面试是一个 认识自己 的过程,知道自己和外面世界的差距。
更重要的是,技术面试是一个双向了解的过程,要让对方发现你的闪光点,同时也要 试图去找到对方的闪光点,因为他以后可能就是你的同事或者领导,所以,面试官问你有什么问题的时候,不要说没有了,要去试图了解他的工作内容、了解这个团队的氛围。
找工作无非就是看三点:和什么人、做什么事、给多少钱,要给这三者在自己的心里划分一个比例。
最后,祝愿大家在这并不友好的环境下都能找到自己心仪的归宿。