如何在webix中只保留字符串数据,我们可以使用webix.storage.local.put吗?

时间:2014-12-29 09:59:11

标签: webix

我想在退出阶段存储字符串值&在应用程序打开阶段检索它。我无法使用webix.storage.local.put()

直接存储数据

1 个答案:

答案 0 :(得分:2)

您可以使用unload事件来存储数据

webix.attachEvent("unload", function(){
  webix.storage.local.put('t1-val', $$('t1').getValue() );
})

检查下一个样本

http://webix.com/snippet/eceb4da2