codecamp

storage.md

ngui/storage

在这里设置的值,退出程序后依然存在,称呼其为本地存储 localStorage 适合小容量数据的快速存取

get(key)

通过名称获取本地值

set(key, value)

通过名称设置本地值

del(key)

通过名称删除本地值

getJson(key)

通过名称获取本地值json数据

setJson(key, value)

通过名称设置本地值json数据

delJson(key)

通过名称删除本地值json

claer()

删除所有本地值,包括普通数据与json数据

reader.md
sys.md
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }