js 处理 cookie 有没比较好的方法呢
有没比较好的 cookie 读写库之类的,手写读取 kv 有点麻烦的样子
手写了一个给你:
export function getCookie(name: string): string {
const value = `; ${document.cookie}`;
const parts: string[] = value.split(`; ${name}=`);
if (parts.length === 2) {
return parts.pop()!.split(';').shift() || '';
}
return '';
}