#localstorge

localstorge的缓存写法(超过一定时间自动清空)

使用缓存:(设置缓存,尽量用大写,下划线的写法)constls={set:function(variable,value,ttl_ms){vardata={value:value,expires_at:newDate(ttl_ms).getTime()};localStorage.setItem(variable.to...