Skip to content

Commit

Permalink
Fix an inaccurate translation
Browse files Browse the repository at this point in the history
  • Loading branch information
giser authored Dec 6, 2024
1 parent 88a6749 commit e2b9ec4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/content/learn/lifecycle-of-reactive-effects.md
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ function ChatRoom({ roomId }) { // roomId 属性可能会随时间变化。

### 每个 Effect 表示一个独立的同步过程。 {/*each-effect-represents-a-separate-synchronization-process*/}

不要仅仅因为某个逻辑需要和你已经写好的 useEffect 一起运行,就将它添加到 useEffect 中。例如,假设你想在用户访问房间时发送一个分析事件。你已经有一个依赖于 `roomId` 的 Effect,所以你可能会想要将分析调用添加到那里:
不要仅仅因为某个逻辑需要和你已经写好的 Effect 一起运行,就将它添加到 Effect 中。例如,假设你想在用户访问房间时发送一个分析事件。你已经有一个依赖于 `roomId` 的 Effect,所以你可能会想要将分析调用添加到那里:

```js {3}
function ChatRoom({ roomId }) {
Expand Down

0 comments on commit e2b9ec4

Please sign in to comment.