gpt4 book ai didi

javascript - 这是什么奇怪的: JSON Parse error: Unexpected identifier "Tunnel"

转载 作者:行者123 更新时间:2023-12-01 16:21:50 25 4
gpt4 key购买 nike

我试图从服务器获取一些数据以显示在 react native 应用程序中。它以前工作过,但我不知道之后发生了什么,我在 fetch 的捕获中添加了一个 console.log .. 它向我显示错误

JSON Parse error: Unexpected identifier "Tunnel" - node_modules/promise/setimmediate/core.js:37:14 in tryCallOne - node_modules/promise/setimmediate/core.js:123:25 in - ... 8 more stack frames from framework internals


fetch(`${this.props.baseUrl}/products?page=${this.state.page}&per_page=10`,{
method:"get",
headers:{
AUTH_TOKEN: this.props.AUTH_TOKEN
}
}).then(res=>res.json()).then(data=>{
if(data.success==true){
this.page++;
this.props.toggleLoading();
this.props.loadProducts(data.products);
}
}).catch(err=>console.log(err)); //error here ..i dont know why that's throwing this kinda error

最佳答案

这是因为 ngrok 停止了它的隧道,所以你的 api 返回一些 text/html 而不是 json 数据,

关于javascript - 这是什么奇怪的: JSON Parse error: Unexpected identifier "Tunnel",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57648503/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com