使用sessionStorage得一个坑

使用sessionStorage得一个坑_第1张图片

1.首先sessionStorage.setItem("isMybill" false)  

2.使用的时候 sessionStorage.getItem('isMybill')  //打印输出是 字符串 : "false"

3.所以在使用之前把 JSON.perse( sessionStorage.getItem('isMybill')) 转换成 json对象 :false

 

JSON.parse(jsonstr); //可以将json字符串转换成json对象 
JSON.stringify(jsonobj); //可以将json对象转换成json对符串 

 

转载于:https://www.cnblogs.com/lihanying/p/6223432.html

你可能感兴趣的:(使用sessionStorage得一个坑)