当我对在本地运行的后端路由进行提取调用时,我在 catch 块中得到响应。
<块引用>类型错误:网络请求失败
let testLocal = 'http://127.0.0.1:5000/test-817a8/us-central1/app/heartbeat'
fetch(testLocal, {
method: 'GET',
}).then(res => {
console.log("success")
console.log("Form submitted:", res)
}).catch(err => {
console.log("error occured:" + err)
})
答案 0 :(得分:0)
在这个问题中,需要更换IP地址: 您需要使用 IPv4 地址(例如:192.168.x.x),而不是 (127.0.0.1) 本地主机