通过localstorage在不同页面之间传递数据

localstorage的基本api

localStorage.setItem('name','justin')
console.log(localStorage.getItem('name'))
localStorage.clear()

localStorage只能存储字符串,注意!!!

对象型数据需要转换成json存储。

一、回归主题

如何在不同间传递数据呢?

思路是,把数据存贮在localStorage中,然后在别的页面中通过localStorage来获取。

明天上代码,今天累了,先到这里

原文地址:https://www.cnblogs.com/justinwxt/p/6838582.html