Persistence lifetime

前端 未结 3 935
执笔经年
执笔经年 2020-12-30 20:50

I read few articles about IndexdDB, but couldn\'t find details about the lifetime of persisted data. I plan to use it for a session of data manipulation and upload once the

3条回答
  •  伪装坚强ぢ
    2020-12-30 21:34

    It's like localStorage, so it's cross-session, meaning restarting browser or system won't affect what is stored in it. However, user can clear it like clearing cookie. So it's just like persistent cookie, you don't trust it from the server-side, and you always need to check its integrity.

提交回复
热议问题