获取无法正常工作且console.log未显示

时间:2018-06-13 23:15:10

标签: javascript reactjs

我目前正在试图找出为什么我的.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))
}

0 个答案:

没有答案