ajax跨域请求失败

第一次使用nodejs和ajax的时候出现了个问题,
打开页面测试的时候,发送一条ajax,http:localhost:2000/,
nodejs端成功,但是浏览器上报错,检查了一下,是ajax跨域问题,

只要在nodejs上写上以下代码即可

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();
});

其他的地方照旧写,跨域问题解决
当时的代码如下


ajax跨域请求失败_第1张图片
asdfsadf15241315897459.png

你可能感兴趣的:(ajax跨域请求失败)