当前端和后端不属于同源策略就会访问不到数据
同源策略就是相同的协议,域名,端口。如果前后端不属于同源策略又想获得后端的数据我们就可以通过跨域开获得数据
关于跨域的解决方法:
app.all('*', function (req, res, next) {
res.header("Access-Control-Allow-Origin", "*");
res.header("Access-Control-Allow-Headers", "X-Requested-With");
res.header("Access-Control-Allow-Methods", "PUT,POST,GET,DELETE,OPTIONS");
res.header("X-Powered-By", ' 3.2.1')
res.header("Content-Type", "application/json;charset=utf-8");
next();
});