1.設置localStorage
window.localStorage.setItem(vm.mobileSelf,JSON.stringify(contactInfo));
vm.mobileSelf也可以換成"隨便的數",
JSON.stringify(contactInfo)也還可以換成"你要存的隨便的數",反正就是字符串
獲取localStorage里面的值
var contactInfos=JSON.parse(localStorage.getItem(vm.mobileSelf));
這里的vm.mobileSelf就對應你剛剛存的"隨便的數",那么得到的就是"你要存的隨便的數",將他賦值給了contactInfos.
2.獲取cookie和設置cookie.
設置,如果是你要存這個username,key就是name,
document.cookie="name="+username;
獲取
vm.mobileSelf=$.cookie('name')
