标签: webix
我想在退出阶段存储字符串值&在应用程序打开阶段检索它。我无法使用webix.storage.local.put()
答案 0 :(得分:2)
您可以使用unload事件来存储数据
webix.attachEvent("unload", function(){ webix.storage.local.put('t1-val', $$('t1').getValue() ); })
检查下一个样本
http://webix.com/snippet/eceb4da2