如何使用钛在应用程序中保存数据或一组列表?

发布于 2024-10-31 10:34:20 字数 177 浏览 1 评论 0 原文

我试图将数据列表保存到应用程序中,但我想保存来自互联网的列表。

我并不是说像书签一样,

它就像保留或保存我想要的所有列表,到手机中以供将来参考,不需要任何互联网连接,

简而言之,如果您对 Android 有任何想法,就像我想实现共享优先选择钛。

请帮忙

谢谢。

i'm trying to save a list of data into the application wen ever i want to save a list that has come from internet.

i'm not saying like a bookmark

it's like keeping or saving all the lists that i want, into the phone for future reference which doesnt need any internet connection then

in short if you have any idea about android, it's like i want to implement shared preference in titanium.

Please help

Thank you.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

洛阳烟雨空心柳 2024-11-07 10:34:20

http://developer.appcelerator.com/apidoc/mobile/latest /Titanium.App.Properties-module

list = ['one', 'two', 'three'];

Titanium.App.Properties.setList('propertyList', list);

Titanium.App.Properties.getList('propetyList');

Ti.App.Properties 存在于应用程序会话之外。

http://developer.appcelerator.com/apidoc/mobile/latest/Titanium.App.Properties-module

list = ['one', 'two', 'three'];

Titanium.App.Properties.setList('propertyList', list);

Titanium.App.Properties.getList('propetyList');

Ti.App.Properties exist beyond application sessions.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文