Titanium:管理用户设置的最佳方式
我正在编写我的第一个钛应用程序,我想知道管理用户设置的最佳方法是什么。
该应用程序的一部分包括创建报价。我想让用户能够设置报价参考号开始。因此,它将是“Q0001”,但用户可以将其更改为“QUOTE0001”,因此我在设置页面上有一个文本字段,用户可以在其中输入“Quote”,然后在前面添加一个递增的数字。
最好将其存储在配置文件或数据库中吗?或者钛有一套执行配置变量的方法吗?
谢谢,
比利
I'm writing my first titanium app and am wondering what is the best way to manage a users settings.
Part of the app includes creating a quote. I want to give the user the ability to set a quote reference number start. So it'll be 'Q0001' say but the user can change it to 'QUOTE0001' so I have a text field on a settings page where the user woulod enter 'Quote' and it is then prepended to a incrementing number.
Is it best to store this in a config file, or database? Or does Titanium have a set way of doing config variable?
Thanks,
Billy
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我将使用属性: Titanium
只需使用 Titanium .App.Properties.setString("用户名", textfield.text);
I would use properties for that: Titanium
Simply use Titanium.App.Properties.setString("username", textfield.text);