我正在尝试在 react-create-app 服务器(localhost:3000)中使用 fetch 从我的 apache(localhost:80)获取静态 .json 文件,但它返回我的 react index.html 文件的源!
指定端口号导致“网络错误”
const that=this;
fetch("localhost/myapp/data/structure.json").then((res)=> {return res.text()})
.then(((data)=>{that.setState({structure: data})})).catch((e)=>{alert(e.toString())});