我尝试从API获取数据,但出现CORS错误。请提供任何建议
下面是代码
useEffect(() => {
if (props.product_id) {
axios
.get(`https://cors-anywhere.herokuapp.com/https://cors-anywhere.herokuapp.com/https://51fgc922b7.execute-api.ap-south-1.amazonaws.com/dev/productpreview?product_id=${props.product_id}`,
) .then((res) => {
console.log(res.data.data)
setModelData(res.data.data[0])
})
.catch((error) => {
setIsErrorImage(true)
})
}
}, []);
1条答案
按热度按时间beq87vna1#
尝试在index.html文件中的 meta标记下方添加