我正在通过API获取数据,并且在本地主机上运行良好,但是在部署网站后,我无法提取错误。任何想法可能导致此问题吗? 谢谢
-变量-
super
this.state
{error, data, hasData}
-componentdidmount-
fetch(API link)
.then(res => res.json())
.then(
(result) => {
this.setState({
hasData: true
data: result.value
});
},
(error) => {
this.setState({
error
});
}
)
-返回-
return
if(error)
error.message
else if(hasData)
print list