我目前正在试图找出为什么我的.json文件无法获取。它给了我没有错误,即使我在fetch中输入随机字母。目前正在使用my-react-app。
constructor(props) {
super(props);
this.state = {
productData: [],
}
}
ComponentDidMount() {
this.fetchData();
}
fetchData() {
fetch('./ProductInformation.json')
.then(Response => Response.json())
.then(parsedJSON => console.log(parsedJSON.results))
.catch(error => console.log('parsing failed', error))
}