axios 尝试使用API获取数据时出现CORS错误

nzkunb0c  于 2022-11-23  发布在  iOS
关注(0)|答案(1)|浏览(218)

我尝试从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)
        })
    }
  }, []);
beq87vna

beq87vna1#

尝试在index.html文件中的 meta标记下方添加

<meta http-equiv="Access-Control-Allow-Origin" content="*" />

相关问题