`) has to line up. Otherwise, toggling `isActive` would recreate the whole tree below and [reset its state.](/learn/preserving-and-resetting-state) This is why, if a similar JSX tree gets returned in both cases, it is better to write them as a single piece of JSX.
+请记住,如果两个不同的 JSX 代码块描述着相同的树结构,它们的嵌套(第一个 `
` → 第一个 `
![]()
`)必须对齐。否则切换 `isActive` 会再次在后面创建整个树结构并且 [重置 state](/learn/preserving-and-resetting-state)。这也就是为什么当一个相似的 JSX 树结构在两个情况下都返回的时候,最好将它们写成一个单独的 JSX。
-#### Profile editor {/*profile-editor*/}
+#### 个人信息编辑器 {/*profile-editor*/}
-Here is a small form implemented with plain JavaScript and DOM. Play with it to understand its behavior:
+这是一个通过纯 JavaScript 和 DOM 实现的小型表单。先来随便使用一下来看看它有什么功能吧:
@@ -796,11 +801,11 @@ label { display: block; margin-bottom: 20px; }
-This form switches between two modes: in the editing mode, you see the inputs, and in the viewing mode, you only see the result. The button label changes between "Edit" and "Save" depending on the mode you're in. When you change the inputs, the welcome message at the bottom updates in real time.
+这个表单在两种模式间切换:编辑模式,你可以看到输入框;查看模式,你只能看到结果。按钮的标签会根据你所处的模式在“编辑”和“保存”两者中切换。当你改变输入框的内容时,欢迎信息会最下面实时更新。
-Your task is to reimplement it in React in the sandbox below. For your convenience, the markup was already converted to JSX, but you'll need to make it show and hide the inputs like the original does.
+你的任务是在下方的沙盒中用 React 再次实现它。为了方便,标记已经转换为 JSX,但是你需要让它像原版那样显示和隐藏输入框。
-Make sure that it updates the text at the bottom, too!
+也要确保它在底下更新文本内容!
@@ -835,9 +840,9 @@ label { display: block; margin-bottom: 20px; }
-You will need two state variables to hold the input values: `firstName` and `lastName`. You're also going to need an `isEditing` state variable that holds whether to display the inputs or not. You should _not_ need a `fullName` variable because the full name can always be calculated from the `firstName` and the `lastName`.
+你需要两个 state 变量来保存输入框中的内容:`firstName` 和 `lastName`。同时你还会需要一个 `isEditing` 的 state 变量来保存是否显示输入框的状态。你应该*不*需要 `fullName` 变量,因为全名可以由`firstName` 和 `lastName` 组合而成。
-Finally, you should use [conditional rendering](/learn/conditional-rendering) to show or hide the inputs depending on `isEditing`.
+最终,你应该根据 `isEditing` 的值使用 [条件渲染](/learn/conditional-rendering) 来决定显示还是隐藏输入框。
@@ -895,13 +900,13 @@ label { display: block; margin-bottom: 20px; }
-Compare this solution to the original imperative code. How are they different?
+这个解决方案与最初命令式的代码相比,它们有什么不同?
-#### Refactor the imperative solution without React {/*refactor-the-imperative-solution-without-react*/}
+#### 不使用 React 去重构命令式的解决方案 {/*refactor-the-imperative-solution-without-react*/}
-Here is the original sandbox from the previous challenge, written imperatively without React:
+这是之前的挑战中的没有使用 React 而写的命令式代码:
@@ -998,9 +1003,9 @@ label { display: block; margin-bottom: 20px; }
-Imagine React didn't exist. Can you refactor this code in a way that makes the logic less fragile and more similar to the React version? What would it look like if the state was explicit, like in React?
+如果不用 React,你能否将这段代码重构得像 React 版本一样健壮?如果要让它的 state 像 React 版本一样清晰且明确,那么这段代码又会写成怎样的呢?
-If you're struggling to think where to start, the stub below already has most of the structure in place. If you start here, fill in the missing logic in the `updateDOM` function. (Refer to the original code where needed.)
+如果你不知道该从哪里入手,下面的代码已经有了大部分的结构。如果你从这里开始的话,只需要在 `updateDOM` 函数中补充缺失的逻辑即可。(需要时请参考原始代码)
@@ -1107,7 +1112,7 @@ label { display: block; margin-bottom: 20px; }
-The missing logic included toggling the display of inputs and content, and updating the labels:
+缺失的逻辑包括切换输入框和内容的显示以及更新标签的内容:
@@ -1224,7 +1229,7 @@ label { display: block; margin-bottom: 20px; }
-The `updateDOM` function you wrote shows what React does under the hood when you set the state. (However, React also avoids touching the DOM for properties that have not changed since the last time they were set.)
+你所写的 `updateDOM` 函数展示了当你设置 state 时,React 在幕后都做了什么。(而且 React 不会修改对应 state 没改变的 DOM)