Questions tagged «meanjs»

19
在预检响应中本身不允许请求标头字段Access-Control-Allow-Headers
我已经多次遇到CORS问题,通常可以解决它,但是我想通过从MEAN堆栈范例中看到这一点来真正理解。 在我将简单的中间件添加到我的快速服务器中以捕获这些问题之前,但是看起来有些预钩正在错误地发出我的请求。 飞行前响应中Access-Control-Allow-Headers不允许请求标头字段Access-Control-Allow-Headers 我以为我可以做到这一点: app.use(function(req, res, next) { res.header("Access-Control-Allow-Headers","*") }) 或同等功能,但这似乎无法解决。我当然也试过 app.use(function(req, res, next) { res.header("Access-Control-Allow-Headers","Access-Control-Allow-Headers") }) 仍然没有运气。
234 express  cors  meanjs 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.