Local Storage vs Cookies

后端 未结 7 1474
名媛妹妹
名媛妹妹 2020-11-21 11:04

I want to reduce load times on my websites by moving all cookies into local storage since they seem to have the same functionality. Are there any pros/cons (especially perfo

7条回答
  •  陌清茗
    陌清茗 (楼主)
    2020-11-21 11:43

    Local storage can store up to 5mb offline data, whereas session can also store up to 5 mb data. But cookies can store only 4kb data in text format.

    LOCAl and Session storage data in JSON format, thus easy to parse. But cookies data is in string format.

提交回复
热议问题