我是钛和iPhone开发的新手,我想知道如何在共享偏好中存储变量值并在另一个js上获取该值?
答案 0 :(得分:4)
演示使用Titanium App Properties module
我在service.js中设置service_running
的布尔值并在app.js中验证
<强> app.js 强>
var isRunning = Ti.App.Properties.getBool("service_running", false);
if (isRunning)
Ti.API.info('service is running');
else
Ti.API.info('service is not running');
在 service.js
中Ti.App.Properties.setBool("service_running", true);
答案 1 :(得分:2)
应用程序属性模块用于在属性/值对中存储与应用程序相关的数据,这些数据会持续超出应用程序会话和设备电源周期。
实施例
Store a property
Store a string property.
Ti.App.Properties.setString('givenName', 'Paul');
Ti.API.info('The value of the givenName property is: ' + Ti.App.Properties.getString('givenName'));