我是节点js的初学者。现在几周我遇到了这个问题。
我用react,redux编写了我的客户端代码,并在localhost:3000
上运行它我的服务器代码是用express编写的,并在localhost:8080上运行。
我有一条路线 -
app.get('/',(req, res) => {
res.json('here');
});
从浏览器浏览时,我可以看到响应,即使使用邮递员,我也可以看到响应。
但是当我从客户端进行axios调用并希望将其存储在我的redux商店中时,我所拥有的响应是这样的 -
screenshot of the response in the client
这里发生了什么?