我将 CORS 插件与 Kong 入口控制器 whitin Postman 一起使用,API 运行良好,响应包括一个
Access-Control-Allow-Origin: *
标题。
但是当我在 Chrome 中提出 cors 请求时,它报告:
Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource.
边缘报告:
The server has not found anything matching the requested URI (Uniform Resource Identifier).
我的上游服务是一个 express/node 应用程序,我已经设置了 cors 中间件,但似乎预检 HTTP OPTIONS 请求不会通过或从 Kong 网关获得响应。
我注意到插件有一个限制。
但我不知道配置我的 KongIngress 对象来克服浏览器中针对 cors 请求的限制。