CORS - MDN Web Docs Glossary: Definitions of Web-related terms 编辑
CORS (Cross-Origin Resource Sharing) is a system, consisting of transmitting HTTP headers, that determines whether browsers block frontend JavaScript code from accessing responses for cross-origin requests.
The same-origin security policy forbids cross-origin access to resources. But CORS gives web servers the ability to say they want to opt into allowing cross-origin access to their resources.
Learn more
General knowledge
- Cross-Origin Resource Sharing (CORS) on MDN
- Cross-origin resource sharing on Wikipedia
CORS headers
Access-Control-Allow-Origin
- Indicates whether the response can be shared.
Access-Control-Allow-Credentials
- Indicates whether or not the response to the request can be exposed when the credentials flag is true.
Access-Control-Allow-Headers
- Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request.
Access-Control-Allow-Methods
- Specifies the method or methods allowed when accessing the resource in response to a preflight request.
Access-Control-Expose-Headers
- Indicates which headers can be exposed as part of the response by listing their names.
Access-Control-Max-Age
- Indicates how long the results of a preflight request can be cached.
Access-Control-Request-Headers
- Used when issuing a preflight request to let the server know which HTTP headers will be used when the actual request is made.
Access-Control-Request-Method
- Used when issuing a preflight request to let the server know which HTTP method will be used when the actual request is made.
Origin
- Indicates where a fetch originates from.
Technical reference
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论