ReactJS - header contains multiple values

 
Vista:

header contains multiple values

Publicado por juan carlos (1 intervención) el 29/07/2020 22:38:09
tengo el siguiente codigo: pero al compilar me da el siguente error

has been blocked by CORS policy: The 'Access-Control-Allow-Origin' header contains multiple values '*, http://localhost', but only one is allowed.

me han dicho que agregando un header se resolveria el problema, pero donde agrego ese header????


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
import React, { Component, useEffect  } from 'react';
import ReactDOM from 'react-dom';
import Footer from '../components/Footer';
 
 
 
 
 
 
 
export default class Registro extends Component {
 
 
 
	constructor (props){
 
		super(props);
		this.state = {
			provincias:[],
		}
 
	}
 
	componentDidMount(){
 
         this.listaProvincias();
    }
 
 
   listaProvincias(){
       axios.get('https://backend.closeteria.com/api/provinces').then(response=>{
 
          this.setState({
            empleado:response.data,
 
 
          })
 
 
 
 
        }).catch(error=>{
          alert("error"+error)
 
 
        })
     }
 
   render(){
 
   	  return(     {this.renderProvincias()}
 
	    {/*div inicial*/}
	  </div>
 
       );
   }
 
   renderProvincias(){
 
      return this.state.provincias.map((data)=>{
 
        return(
 
            <h6>{data.name}</h6>
 
 
        )
 
      })
 
    }
 
}
 
if (document.getElementById('registro')) {
    ReactDOM.render(<Registro />, document.getElementById('registro'));
}
Valora esta pregunta
Me gusta: Está pregunta es útil y esta claraNo me gusta: Está pregunta no esta clara o no es útil
0
Responder