我使用create-react-app(npm starts server http://localhost:3000/)
一切都很好
对于数据访问,我尝试连接到我的服务器http://127.0.0.1:8081
我的脚本发送请求
fetch('http://127.0.0.1:8081/xhr', {method: 'post', body: data, credentials: 'include'})
服务器127.0.0.1:8081接收请求并给出答案
200, 'text/html; charset=UTF-8', 'OK'
但react-js给出了一个错误 " TypeError:尝试获取资源时出现NetworkError。" 如果我做" npm run build&#34 ;,一切正常,没有错误。 但它很不舒服。
环境解决方案" create-react-app"只工作了2台服务器(localhost:3000和127.0.0.1:8081)?