0

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

4

1 回答 1

2

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

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

检查下一个样本

http://webix.com/snippet/eceb4da2

于 2015-01-04T12:59:44.907 回答