我是钛和 iPhone 开发的新手,我想知道如何在共享偏好中存储变量的值并在另一个 js 上获取该值?
问问题
335 次
2 回答
4
演示使用的简单示例Titanium App Properties module
我service_running
在 service.js 中设置一个布尔值并在 app.js 中进行验证
应用程序.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);
于 2013-08-21T10:21:57.540 回答
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'));
于 2013-08-21T10:11:10.577 回答