Hi i need to add a new elements in my object in react but the method is not work
here is my code
JavaScript
x
7
1
let datos= [
2
{ title: "Event 1", id: "1" },
3
{ title: "Event 2", id: "2" },
4
{ title: "Event 3", id: "3" },
5
{ title: "Event 4", id: "4" },
6
{ title: "Event 5", id: "5" }
7
]
JavaScript
1
15
15
1
Capturar(){
2
const ide = document.getElementById("id").value
3
const titulo = document.getElementById("titulo").value
4
datos.push(title, id = titulo, ide)
5
}
6
7
<div>
8
<input type="text" placeholder='Agregar titulo' id='id' style={{width: "20%", marginRight:"10px"}}/>
9
<input type="text" placeholder='Agregar titulo' id='titulo' style={{width: "20%", marginRight:"10px"}}/>
10
11
<button style={{marginTop: "10px"}} onClick={this.Capturar}>
12
Agregar tarea
13
</button>
14
</div>
15
Advertisement
Answer
JavaScript
1
48
48
1
import { useState, useRef } from 'react'
2
3
const Test = () => {
4
5
const defaultValue= [
6
{ title: "Event 1", id: "1" },
7
{ title: "Event 2", id: "2" },
8
{ title: "Event 3", id: "3" },
9
{ title: "Event 4", id: "4" },
10
{ title: "Event 5", id: "5" }
11
]
12
const [ datos, setDatos] = useState(defaultValue)
13
const id= useRef(null)
14
const title = useRef('')
15
16
const Capturar = () => {
17
setDatos([datos, {title: title.current, id: id.current}])
18
}
19
20
const handleIdChange = (e) => {
21
id.current = e.target.value
22
}
23
const handleTitleChange = (e) => {
24
title.current = e.target.value
25
}
26
27
return(
28
<div>
29
<input type="text"
30
placeholder='Agregar titulo'
31
style={{width: "20%", marginRight:"10px"}}
32
onChange={handleIdChange}
33
/>
34
<input type="text"
35
placeholder='Agregar titulo'
36
onChange={handleTitleChange}
37
style={{width: "20%", marginRight:"10px"}}/>
38
39
<button style={{marginTop: "10px"}} onClick={Capturar}>
40
Agregar tarea
41
</button>
42
</div>
43
)
44
}
45
46
export default Test
47
48
with class component :
JavaScript
1
52
52
1
import React from 'react'
2
3
class TestClass extends React.Component {
4
constructor() {
5
super();
6
this.state = {
7
id: '',
8
title: '',
9
datos: [
10
{ title: "Event 1", id: "1" },
11
{ title: "Event 2", id: "2" },
12
{ title: "Event 3", id: "3" },
13
{ title: "Event 4", id: "4" },
14
{ title: "Event 5", id: "5" }
15
],
16
}
17
this.capturar = this.capturar.bind(this)
18
this.handleChange = this.handleChange.bind(this)
19
}
20
21
capturar () {
22
this.setState({this.state, datos: [this.state.datos,{title: this.state.title, id: this.state.id} ] })
23
}
24
25
handleChange = (e) => {
26
this.setState({this.state, [e.target.name] : e.target.value })
27
}
28
29
render() {
30
return <div>
31
<input type="text"
32
name='title'
33
placeholder='Agregar titulo'
34
style={{width: "20%", marginRight:"10px"}}
35
onChange={this.handleChange}
36
/>
37
<input type="text"
38
name='id'
39
placeholder='Agregar titulo'
40
onChange={this.handleChange}
41
style={{width: "20%", marginRight:"10px"}}/>
42
43
<button style={{marginTop: "10px"}} onClick={this.capturar}>
44
Agregar tarea
45
</button>
46
</div>;
47
}
48
}
49
50
export default TestClass
51
52