You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: content/docs/uncontrolled-components.md
+15-15
Original file line number
Diff line number
Diff line change
@@ -1,14 +1,14 @@
1
1
---
2
2
id: uncontrolled-components
3
-
title: Uncontrolled Components
3
+
title: 非受控组件
4
4
permalink: docs/uncontrolled-components.html
5
5
---
6
6
7
-
In most cases, we recommend using [controlled components](/docs/forms.html)to implement forms. In a controlled component, form data is handled by a React component. The alternative is uncontrolled components, where form data is handled by the DOM itself.
7
+
在大多数情况下,我们推荐使用 [受控组件](/docs/forms.html)来处理表单数据。在一个受控组件中,表单数据是由 React 组件来管理的。另一种替代方案是使用非受控组件,这时表单数据将交由 DOM 节点来处理。
8
8
9
-
To write an uncontrolled component, instead of writing an event handler for every state update, you can [use a ref](/docs/refs-and-the-dom.html)to get form values from the DOM.
9
+
要编写一个非受控组件,而不是为每个状态更新都编写数据处理函数,你可以 [使用 ref](/docs/refs-and-the-dom.html)来从 DOM 节点中获取表单数据。
10
10
11
-
For example, this code accepts a single name in an uncontrolled component:
11
+
例如,下面的代码使用非受控组件接受一个表单的值:
12
12
13
13
```javascript{5,9,18}
14
14
class NameForm extends React.Component {
@@ -37,15 +37,15 @@ class NameForm extends React.Component {
37
37
}
38
38
```
39
39
40
-
[**Try it on CodePen**](https://codepen.io/gaearon/pen/WooRWa?editors=0010)
Since an uncontrolled component keeps the source of truth in the DOM, it is sometimes easier to integrate React and non-React code when using uncontrolled components. It can also be slightly less code if you want to be quick and dirty. Otherwise, you should usually use controlled components.
42
+
因为非受控组件将真实数据储存在 DOM 节点中,所以再使用非受控组件时,有时候反而更容易同时集成 React 和非 React 代码。如果你不介意代码美观性,并且希望快速编写代码,使用非受控组件往往可以减少你的代码量。否则,你应该使用受控组件。
43
43
44
-
If it's still not clear which type of component you should use for a particular situation, you might find [this article on controlled versus uncontrolled inputs](https://goshakkk.name/controlled-vs-uncontrolled-inputs-react/)to be helpful.
In the React rendering lifecycle, the `value`attribute on form elements will override the value in the DOM. With an uncontrolled component, you often want React to specify the initial value, but leave subsequent updates uncontrolled. To handle this case, you can specify a `defaultValue`attribute instead of `value`.
In HTML, an `<input type="file">`lets the user choose one or more files from their device storage to be uploaded to a server or manipulated by JavaScript via the [File API](https://developer.mozilla.org/en-US/docs/Web/API/File/Using_files_from_web_applications).
71
+
在 HTML 中,`<input type="file">`可以让用户选择一个或多个文件上传到服务器,或者通过使用 [File API](https://developer.mozilla.org/en-US/docs/Web/API/File/Using_files_from_web_applications) 进行操作。
72
72
73
73
```html
74
74
<inputtype="file" />
75
75
```
76
76
77
-
In React, an `<input type="file" />`is always an uncontrolled component because its value can only be set by a user, and not programmatically.
You should use the File API to interact with the files. The following example shows how to create a [ref to the DOM node](/docs/refs-and-the-dom.html)to access file(s) in a submit handler:
79
+
您应该使用 File API 与文件进行交互。下面的例子显示了如何创建一个 [DOM 节点的 ref](/docs/refs-and-the-dom.html)从而在提交表单时获取文件的信息。
0 commit comments