unicorn/no-document-cookie 正确性
✅ 此规则默认启用。
作用
禁止直接使用 document.cookie
。
为什么这么做不妥?
不建议直接使用 document.cookie
,因为容易导致字符串错误。你应该使用 Cookie 存储 API 或 cookie 库。
示例
此规则的错误代码示例
javascript
document.cookie =
"foo=bar" + "; Path=/" + "; Domain=example.com" + "; expires=Fri, 31 Dec 9999 23:59:59 GMT" + "; Secure";
此规则的正确代码示例
javascript
async function storeCookies() {
await cookieStore.set({
name: "foo",
value: "bar",
expires: Date.now() + 24 * 60 * 60 * 1000,
domain: "example.com",
});
}