【发布时间】:2022-01-12 09:32:48
【问题描述】:
我是原生反应的新手。每次我尝试获取时都会出现此错误
[TypeError: 网络请求失败]
下面是代码:
fetch("http://192.168.20.137:3000/posts", {
method: "POST",
headers: {
Accept: "application/json",
"Content-Type": "application/json",
},
body: JSON.stringify(memberID),
})
.then((res) => res.json())
.then((data) => Alert.alert(data))
.catch((err) => console.log(err));
}; ```
【问题讨论】: