diff --git a/conflict-files-obsidian-git.md b/conflict-files-obsidian-git.md deleted file mode 100644 index c8ba493..0000000 --- a/conflict-files-obsidian-git.md +++ /dev/null @@ -1,3 +0,0 @@ -# Conflict files -Please resolve them and commit per command (This file will be deleted before the commit). -- Not a file: .obsidian/workspace \ No newline at end of file diff --git a/随时随地/奇怪的疑惑.md b/随时随地/奇怪的疑惑.md index 901282e..bbdf109 100644 --- a/随时随地/奇怪的疑惑.md +++ b/随时随地/奇怪的疑惑.md @@ -1,6 +1,6 @@ # 奇怪的疑惑 - [x] React 的 fiber 是什么,在 React v16 之前又是怎么做的? - - 在之前,React 使用递归的方式渲染DOM,这样在一些大型的Web应用会导致浏览器的阻塞,让一些优先级较高的任务没办法执行,在React16,React引入 Fiber 的数据结构,可以分片可以根据调度 + - 在之前,React 使用递归的方式渲染DOM,这样在一些大型的Web应用会导致浏览器的阻塞,让一些优先级较高的任务没办法执行,在React16,React引入 Fiber 的数据结构,可以分片可以根据调度优先执行优先级较高的任务,重点在于 React 的性能优化 - [x] useCallback 里边发生了什么 - [[简单的 React 思考 - useCallback和useMemo]] - [x] useMemo 里边发生了什么