cookie 操作

title: cookie 操作 id: 66793c44c70fd19fb197dc96b648e4ce tags: [] date: 2000/01/01 00:00:00 updated: 2023/02/16 14:50:13 isPublic: true --#|[分隔]|#--

读取和设置cookie:

// 读取 cookie
export function getCookie(key) {
  var result = '';
  if (document.cookie.length > 0) {
    var arr = document.cookie.split('; ');
    for (var i = 0; i < arr.length; i++) {
      var arr2 = arr[i].split('=');
      if (arr2[0] === key) {
        result = arr2[1];
      }
    }
  }
  return result;
}

// 设置 cookie
export function setCookie(key, value) {
  window.document.cookie = key + '=' + value + ';path=/; ' + ';';
}

Last updated

Was this helpful?