Cookie
是一个请求首部,其中含有先前由服务器通过 Set-Cookie
首部投放并存储到客户端的 HTTP cookies。
这个首部可能会被完全移除,例如在浏览器的隐私设置里面设置为禁用cookie。
语法
Cookie: <cookie-list>
Cookie: name=value
Cookie: name=value; name2=value2; name3=value3
- <cookie-list>
- 一系列的名称/值对,形式为
<cookie-name>=<cookie-value>。
名称/值对之间用分号和空格 ('; ')隔开。
示例
Cookie: PHPSESSID=298zf09hf012fh2; csrftoken=u32t4o3tb3gg43; _gat=1;
规范
浏览器兼容性
The compatibility table in this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.
Feature | Chrome | Edge | Firefox | Internet Explorer | Opera | Safari |
---|
Basic Support |
(Yes) |
(Yes) |
(Yes) |
(Yes) |
(Yes) |
(Yes) |
Feature | Android | Chrome for Android | Edge mobile | Firefox for Android | IE mobile | Opera Android | iOS Safari |
---|
Basic Support |
(Yes) |
(Yes) |
(Yes) |
(Yes) |
(Yes) |
(Yes) |
(Yes) |
相关内容
文档标签和贡献者