常见的设置Cookie的方法
- 前端JavaScript设置:
document.cookie = "username=John Doe; expires=Thu, 18 Dec 2025 12:00:00 UTC; path=/";
- 服务端设置:
- 以 Node.js 和 Express 为例:
res.cookie('username', 'John Doe', { maxAge: 900000, httpOnly: true });
- PHP设置:
setcookie("username", "John Doe", time() + (86400 * 30), "/");
- 使用HTTP响应头设置(服务器端):
Set-Cookie: username=John Doe; Expires=Thu, 18 Dec 2025 12:00:00 GMT; Path=/