跨源读取阻塞 React - Nodejs

发布于 2025-01-11 01:28:58 字数 557 浏览 2 评论 0原文

我正在尝试从 lh:5000

useEffect(() => {
    const getProducts = async () => {
      try {
        const res = await axios.get(
          cat
            ? `http://localhost:5000/api/products?category=${cat}`
            : "http://localhost:5000/api/products"
        );
        console.log(res);
      } catch (err) {}
      setProducts(res.data)
    };
  }, [cat]);

cat 上运行的 REST API 获取数据。 我收到 2 个错误:

  1. 跨源读取阻止 (CORB) 阻止跨源响应
  2. res 未定义。

我收到 1 条警告 getProducts 已定义但从未使用过

如何修复这些错误?谢谢

I am trying to fetch data from REST API running on lh:5000

useEffect(() => {
    const getProducts = async () => {
      try {
        const res = await axios.get(
          cat
            ? `http://localhost:5000/api/products?category=${cat}`
            : "http://localhost:5000/api/products"
        );
        console.log(res);
      } catch (err) {}
      setProducts(res.data)
    };
  }, [cat]);

cat is a prop.
I get 2 errors :

  1. Cross-Origin Read Blocking (CORB) blocked cross-origin response
  2. res is not defined.

I get 1 warning getProducts is defined but never used

How do I fix these errors? Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

归属感 2025-01-18 01:28:58

您尚未调用 getProducts 函数,因此它收到警告 getProducts 已定义但从未使用

其次,您正在访问变量 res,而不是在 try 中访问它们的作用域。

useEffect(() => {
    const getProducts = async () => {
      try {
        const res = await axios.get(
          cat
            ? `http://localhost:5000/api/products?category=${cat}`
            : "http://localhost:5000/api/products"
        );
        console.log(res);
        setProducts(res.data) // set state here
       } catch (err) {}
    
    };
  getProducts(); // call function too.
  }, [cat]);

You have not called getProducts function so its getting warning getProducts is defined but never used.

And secondly you are accessing variable res other than their scope access it in try.

useEffect(() => {
    const getProducts = async () => {
      try {
        const res = await axios.get(
          cat
            ? `http://localhost:5000/api/products?category=${cat}`
            : "http://localhost:5000/api/products"
        );
        console.log(res);
        setProducts(res.data) // set state here
       } catch (err) {}
    
    };
  getProducts(); // call function too.
  }, [cat]);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文