标签:技术 str get json对象 .com string 技术分享 字符串转换 http
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对符串
标签:技术 str get json对象 .com string 技术分享 字符串转换 http
原文地址:http://www.cnblogs.com/lihanying/p/6223432.html