Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ascoders committed Apr 23, 2018
1 parent 5bf4c7c commit 564738e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 53.精读《插件化思维》.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ document.on("focus", callback);

`service worker` 就更明显,业务代码几乎完全由一堆时间监听构成,比如 `install` 时机,随时可以新增一个监听,将 `install` 时机进行 delay,而不需要侵入其他代码。

在事件机制玩出花样的应该算 `koa` 了,它的中间件洋葱模型非常有名,换个角度理解,可以认为是**能控制执行时机的事件插件化**也就是只要想把执行时机放在所有事件执行完毕时,把代码放在 `next()` 之后即可,如果想终止插件执行,可以不调用 `next()`
在事件机制玩出花样的应该算 `koa` 了,它的中间件洋葱模型非常有名,换个角度理解,可以认为是**能控制执行时机的事件插件化**也就是只要想把执行时机放在所有事件执行完毕时,把代码放在 `next()` 之后即可,如果想终止插件执行,可以不调用 `next()`

> 举例:`koa``service worker``dom events`
Expand Down

0 comments on commit 564738e

Please sign in to comment.