我有一个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) })
听到的是代码,服务器没有响应