如何在网络和移动设备之间共享node.s后端?

问题描述 投票:0回答:1

我的页面是这样的

Server => Nodejs APIs
Client => React
Mobile => React Native

在移动设备上,我应该像使用 React 那样向 Nodejs 发出请求吗?我不需要对请求进行任何类型的更改吗?因为当我在 React Native 中调用端点时,出现以下错误:

可能未处理的承诺拒绝(id 0)类型错误网络请求失败

reactjs node.js mobile
1个回答
0
投票

只需使用 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”进行本机反应。

© www.soinside.com 2019 - 2024. All rights reserved.