我的页面是这样的
服务器 => Nodejs API
客户端=>反应
移动 => React Native
在移动设备上,我应该像使用 React 那样向 Nodejs 发出请求吗?我不需要对请求进行任何类型的更改吗?因为当我在 React Native 中调用端点时,出现以下错误: possible unhandled Promise Rejection (id 0) TypeError Network request failed
只需使用 fetch 请求向后端发送请求。 例如
const res = await fetch("http://localhost:8080/api/v1/users");
const data = await res.json();
// use the data.
确保您在开发中使用“http://10.0.2.2:8080”进行本机反应。