跨源读取阻塞 React - Nodejs
我正在尝试从 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 个错误:
- 跨源读取阻止 (CORB) 阻止跨源响应
- 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 :
- Cross-Origin Read Blocking (CORB) blocked cross-origin response
- res is not defined.
I get 1 warning getProducts is defined but never used
How do I fix these errors? Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您尚未调用 getProducts 函数,因此它收到警告 getProducts 已定义但从未使用。
其次,您正在访问变量 res,而不是在 try 中访问它们的作用域。
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.