export Data in localStorage for later re-import

后端 未结 5 657
既然无缘
既然无缘 2021-01-31 00:22

I want to export a few items from my localStorage to save it externally but in a format so that I can import it again later.

My attempt was to write executable code that

5条回答
  •  时光说笑
    2021-01-31 00:51

    Here's how to import/export your entire localStorage

    Export

    copy(JSON.stringify(localStorage));
    

    This will copy your localStorage to your clipboard. (You need two JSON.stringify()'s to get the quotes escaped.)

    Import

    var data = JSON.parse(/*paste stringified JSON from clipboard*/);
    Object.keys(data).forEach(function (k) {
      localStorage.setItem(k, data[k]);
    });
    

提交回复
热议问题