我有一个使用create-react-app创建的react应用。我想将请求发送到另一个网址:
fetch('anotherUrl')
.then(response => response.json())
.then(res => console.log(res))
之后,我遇到了问题。如何设置中间件使该错误为空?
答案 0 :(得分:0)
您可以使用浏览器插件来关闭cors。在完成开发应用程序并将其投入在线之后,cors将不再是问题。只有在localhost中运行应用程序时,这才是问题。