在用react native写ios app,看官方文档是用fetch做交互,那后台我用

用express写过web应用的后台,但移动端应用没有url不知道该怎么弄了,比如

app.get('/a', function (req, res) {

  res.send('Hello World!');

});

var server = app.listen(3000)

那我fetch 里的URL参数 填 fetch('http:127.0.0.1:3000/a',medthod:get) 这样吗?运行react-native run ios后发现并没有用

慕码人8056858
浏览 698回答 1
1回答

炎炎设计

估计是跨域问题。试试fetch('http://localhost:3000/a', { credentials: 'include', method: 'get' });
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript