有反应本机发送消息到本地计算机服务器

时间:2019-04-11 00:32:16

标签: android node.js express react-native

我有一个react本机应用程序,希望将发布请求发送到Windows计算机上的本地主机服务器。服务器正在使用快递。它适用于React网站版本,但该消息不会针对该应用程序传递。

    fetch('http://35.3.52.25:3000/', {
        method: 'POST',
        headers: {

          'Content-Type': 'application/json',
        },
        body: JSON.stringify({ 'text': this.state.results }),
      })
      .then(function(res){ console.log(res) })
      .catch(function(res){ console.log(res) })

听到的是代码,服务器没有响应

0 个答案:

没有答案