这里我处理了header了,为什么还是有跨域问题
认证0级讲师
图看不清啊 这是在nodejs里写的吗
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");
跨域节点请参考
你是express框架吗?我的express框架程序是这么做的:
app.all('*', function(req, res, next) { res.append('Access-Control-Allow-Origin', '*'); next() });
就是需要把所有的请求统一处理设置res的header为允许跨域请求,具体不知道你代码如何写的,如果还是没法解决,建议把代码贴出来看看。
直接用jsonp来跨域就可以了
getJSONDATA(){ $.ajax({ url: "xxx", //接口地址 data: {xxx}, //传参 dataType: "jsonp", jsonpCallback: "person", //核心cb success: function (data) { console.log(data.s); } }); },
图看不清啊 这是在nodejs里写的吗
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");
跨域节点请参考
你是express框架吗?我的express框架程序是这么做的:
就是需要把所有的请求统一处理设置res的header为允许跨域请求,具体不知道你代码如何写的,如果还是没法解决,建议把代码贴出来看看。
直接用jsonp来跨域就可以了