2021-06-15 00:49:18 -07:00
---
id: 5a24c314108439a4d4036179
2021-06-26 21:42:30 +05:30
title: Creare un modulo controllato
2021-06-15 00:49:18 -07:00
challengeType: 6
forumTopicId: 301384
dashedName: create-a-controlled-form
---
# --description--
2021-06-26 21:42:30 +05:30
L'ultima sfida ha mostrato che React può controllare lo stato interno di alcuni elementi come `input` e `textarea` , il che li rende componenti controllati. Questo vale anche per altri elementi dei moduli, tra cui il normale elemento HTML `form` .
2021-06-15 00:49:18 -07:00
# --instructions--
2021-06-26 21:42:30 +05:30
Il componente `MyForm` è impostato con un `form` vuoto con un gestore di invio. Il gestore di invio verrà chiamato al momento dell'invio del modulo.
2021-06-15 00:49:18 -07:00
2021-07-16 11:03:16 +05:30
Abbiamo aggiunto un bottone che invia il modulo. Puoi vedere che il `type` è impostato su `submit` indicando che è il bottone che controlla il modulo. Aggiungi l'elemento `input` nel `form` e imposta i suoi attributi `value` e `onChange()` come nell'ultima sfida. Dovresti quindi completare il metodo `handleSubmit` in modo che imposti la proprietà di stato `submit` del componente al valore corrente di input nello `state` locale.
2021-06-15 00:49:18 -07:00
2021-06-26 21:42:30 +05:30
**Nota:** Devi anche chiamare `event.preventDefault()` nel gestore di invio, per evitare il comportamento predefinito di invio del modulo che ricaricherà la pagina web. Per comodità, il comportamento predefinito è stato disabilitato qui per evitare che gli aggiornamenti reimpostino il codice della sfida.
2021-06-15 00:49:18 -07:00
2021-06-26 21:42:30 +05:30
Infine, crea un tag `h1` dopo il `form` che mostri il valore `submit` dallo `state` del componente. Puoi quindi digitare nel modulo e fare clic sul bottone (o premere invio), e dovresti vedere il tuo input presentato nella pagina.
2021-06-15 00:49:18 -07:00
# --hints--
2021-06-26 21:42:30 +05:30
`MyForm` dovrebbe restituire un elemento `div` che contiene un `form` e un tag `h1` . Il modulo dovrebbe includere un `input` e un `button` .
2021-06-15 00:49:18 -07:00
```js
assert(
(() => {
const mockedComponent = Enzyme.mount(React.createElement(MyForm));
return (
mockedComponent.find('div').children().find('form').length === 1 & &
mockedComponent.find('div').children().find('h1').length === 1 & &
mockedComponent.find('form').children().find('input').length === 1 & &
mockedComponent.find('form').children().find('button').length === 1
);
})()
);
```
2021-06-26 21:42:30 +05:30
Lo stato di `MyForm` dovrebbe essere inizializzato con le proprietà `input` e `submit` , entrambe impostate su stringhe vuote.
2021-06-15 00:49:18 -07:00
```js
assert(
Enzyme.mount(React.createElement(MyForm)).state('input') === '' & &
Enzyme.mount(React.createElement(MyForm)).state('submit') === ''
);
```
2021-06-26 21:42:30 +05:30
Scrivendo dentro all'elemento `input` si dovrebbe aggiornare la proprietà `input` dello stato del componente.
2021-06-15 00:49:18 -07:00
```js
(() => {
const mockedComponent = Enzyme.mount(React.createElement(MyForm));
const _1 = () => {
mockedComponent.setState({ input: '' });
return mockedComponent.state('input');
};
const _2 = () => {
mockedComponent
.find('input')
.simulate('change', { target: { value: 'TestInput' } });
return {
state: mockedComponent.state('input'),
inputVal: mockedComponent.find('input').props().value
};
};
const before = _1();
const after = _2();
assert(
before === '' & &
after.state === 'TestInput' & &
after.inputVal === 'TestInput'
);
})();
```
2021-06-26 21:42:30 +05:30
L'invio del modulo dovrebbe eseguire `handleSubmit` che dovrebbe impostare la proprietà `submit` nello stato in modo che sia uguale all'input corrente.
2021-06-15 00:49:18 -07:00
```js
(() => {
const mockedComponent = Enzyme.mount(React.createElement(MyForm));
const _1 = () => {
mockedComponent.setState({ input: '' });
mockedComponent.setState({ submit: '' });
mockedComponent
.find('input')
.simulate('change', { target: { value: 'SubmitInput' } });
return mockedComponent.state('submit');
};
const _2 = () => {
mockedComponent.find('form').simulate('submit');
return mockedComponent.state('submit');
};
const before = _1();
const after = _2();
assert(before === '' & & after === 'SubmitInput');
})();
```
2021-06-26 21:42:30 +05:30
`handleSubmit` dovrebbe chiamare `event.preventDefault`
```js
assert(
2021-07-17 16:01:27 +05:30
__helpers.isCalledWithNoArgs(
'event.preventDefault',
MyForm.prototype.handleSubmit.toString()
)
2021-06-26 21:42:30 +05:30
);
```
2021-10-27 15:10:57 +00:00
L'elemento di intestazione `h1` dovrebbe fare il render del valore del campo `submit` prendendolo dallo stato del componente.
2021-06-15 00:49:18 -07:00
```js
(() => {
const mockedComponent = Enzyme.mount(React.createElement(MyForm));
const _1 = () => {
mockedComponent.setState({ input: '' });
mockedComponent.setState({ submit: '' });
mockedComponent
.find('input')
.simulate('change', { target: { value: 'TestInput' } });
return mockedComponent.find('h1').text();
};
const _2 = () => {
mockedComponent.find('form').simulate('submit');
return mockedComponent.find('h1').text();
};
const before = _1();
const after = _2();
assert(before === '' & & after === 'TestInput');
})();
```
# --seed--
## --after-user-code--
```jsx
ReactDOM.render(< MyForm / > , document.getElementById('root'));
```
## --seed-contents--
```jsx
class MyForm extends React.Component {
constructor(props) {
super(props);
this.state = {
input: '',
submit: ''
};
this.handleChange = this.handleChange.bind(this);
this.handleSubmit = this.handleSubmit.bind(this);
}
handleChange(event) {
this.setState({
input: event.target.value
});
}
handleSubmit(event) {
// Change code below this line
2021-06-26 21:42:30 +05:30
2021-06-15 00:49:18 -07:00
// Change code above this line
}
render() {
return (
< div >
< form onSubmit = {this.handleSubmit} >
{/* Change code below this line */}
{/* Change code above this line */}
< button type = 'submit' > Submit!< / button >
< / form >
{/* Change code below this line */}
{/* Change code above this line */}
< / div >
);
}
}
```
# --solutions--
```jsx
class MyForm extends React.Component {
constructor(props) {
super(props);
this.state = {
input: '',
submit: ''
};
this.handleChange = this.handleChange.bind(this);
this.handleSubmit = this.handleSubmit.bind(this);
}
handleChange(event) {
this.setState({
input: event.target.value
});
}
handleSubmit(event) {
event.preventDefault();
this.setState(state => ({
submit: state.input
}));
}
render() {
return (
< div >
< form onSubmit = {this.handleSubmit} >
< input value = {this.state.input} onChange = {this.handleChange} / >
< button type = 'submit' > Submit!< / button >
< / form >
< h1 > {this.state.submit}< / h1 >
< / div >
);
}
}
```