diff --git a/src/content/learn/escape-hatches.md b/src/content/learn/escape-hatches.md index c5d90d8177..b246d93490 100644 --- a/src/content/learn/escape-hatches.md +++ b/src/content/learn/escape-hatches.md @@ -97,7 +97,7 @@ export default function Form() { -## 使用 Effect 同步 {/*synchronizing-with-effects*/} +## 使用 Effect 进行同步 {/*synchronizing-with-effects*/} 有些组件需要与外部系统同步。例如,可能需要根据 React 状态控制非 React 组件、设置服务器连接或在组件出现在屏幕上时发送分析日志。与处理特定事件的事件处理程序不同,**Effect** 在渲染后运行一些代码。使用它将组件与 React 之外的系统同步。 @@ -187,7 +187,7 @@ input { display: block; margin-bottom: 20px; } -阅读 **[使用 Effect 同步](/learn/synchronizing-with-effects)** 以了解如何将组件与外部系统同步。 +阅读 **[使用 Effect 进行同步](/learn/synchronizing-with-effects)** 以了解如何将组件与外部系统同步。 diff --git a/src/sidebarLearn.json b/src/sidebarLearn.json index 0730344e50..64b46b2fca 100644 --- a/src/sidebarLearn.json +++ b/src/sidebarLearn.json @@ -182,7 +182,7 @@ "path": "/learn/manipulating-the-dom-with-refs" }, { - "title": "使用 Effect 同步", + "title": "使用 Effect 进行同步", "path": "/learn/synchronizing-with-effects" }, {