我已经在用于node.js的快速框架上编写了REST API,该API可以处理来自Chrome中的js控制台和URL栏等的请求。现在,我试图使其适用于来自另一个应用程序的请求域(CORS)。由javascript前端自动发出的第一个请求是对/ api / search?uri =的请求,并且似乎在“预检” OPTIONS请求中失败。在我的快速应用中,我使用以下方法添加了CORS标头:var allowCrossDomain = function(req, res, next) { res.header('Access-Control-Allow-Origin', '*'); res.header('Access-Control-Allow-Methods', 'GET,PUT,POST,DELETE,OPTIONS'); res.header('Access-Control-Allow-Headers', 'Content-Type, Authorization, Content-Length, X-Requested-With'); // intercept OPTIONS method if ('OPTIONS' == req.method) { res.send(200); } else { next(); }};和:app.configure(function () { app.use(express.bodyParser()); app.use(express.methodOverride()); app.use(app.router); app.use(allowCrossDomain); app.use(express.static(path.join(application_root, "public"))); app.use(express.errorHandler({ dumpExceptions: true, showStack: true }));});从Chrome控制台中,我得到了以下标题:请求网址:http://furious-night-5419.herokuapp.com/api/search?uri = http%3A%2F%2Flocalhost%3A5000%2Fcollections%2F1%2Fdocuments%2F1请求方法:OPTIONS状态码:200 OK请求标题Accept:*/*Accept-Charset:ISO-8859-1,utf-8;q=0.7,*;q=0.3Accept-Encoding:gzip,deflate,sdchAccept-Language:en-US,en;q=0.8Access-Control-Request-Headers:origin, x-annotator-auth-token, acceptAccess-Control-Request-Method:GETConnection:keep-aliveHost:furious-night-5419.herokuapp.comOrigin:http://localhost:5000Referer:http://localhost:5000/collections/1/documents/1User-Agent:Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_4) AppleWebKit/536.5 (KHTML, like Gecko) Chrome/19.0.1084.56 Safari/536.5查询字符串参数uri:http://localhost:5000/collections/1/documents/1响应标题Allow:GETConnection:keep-aliveContent-Length:3Content-Type:text/html; charset=utf-8X-Powered-By:Express这看起来像API应用程序发送的标题不正确吗?谢谢。
3 回答
泛舟湖上清波郎朗
TA贡献1818条经验 获得超3个赞
为了支持带有凭据的Cookie,您需要此行 xhr.withCredentials = true;
mdn docs xhr.withCredentials
在Express Server中,在所有其他块之前添加此块
`app.all('*', function(req, res, next) {
var origin = req.get('origin');
res.header('Access-Control-Allow-Origin', origin);
res.header("Access-Control-Allow-Headers", "X-Requested-With");
res.header('Access-Control-Allow-Headers', 'Content-Type');
next();
});`
海绵宝宝撒
TA贡献1809条经验 获得超8个赞
对于大多数浏览此问题的人来说,情况可能并非如此,但我也遇到了同样的问题,解决方案与无关CORS。
事实证明,string在环境变量中未定义JSON Web令牌机密,因此无法对令牌进行签名。这会导致任何POST依赖于检查或签名令牌以获取超时并返回503错误的请求,从而告诉浏览器出了点问题CORS,事实并非如此。在Heroku中添加环境变量解决了该问题。
我希望这可以帮助别人。
- 3 回答
- 0 关注
- 642 浏览
添加回答
举报
0/150
提交
取消