I need to get all the cookies from the browser

前端 未结 9 1324
没有蜡笔的小新
没有蜡笔的小新 2020-12-04 09:52

I need to get all the cookies stored in my browser using JavaScript. How can it be done?

9条回答
  •  臣服心动
    2020-12-04 10:32

    Modern approach.

    let c = document.cookie.split(";").reduce( (ac, cv, i) => Object.assign(ac, {[cv.split('=')[0]]: cv.split('=')[1]}), {});
    
    console.log(c);
    

    ;)

提交回复
热议问题