如何实现桌面行情?
我想实现一个基于桌面的自动收报机。该代码将显示已在相关 PHP 网站上注册产品的用户数量。该数据存储在 MySQL 数据库中。每次新用户注册时,股票代码都会更新。如果它是基于网络的,这将很容易实现,您能否建议我将其实现为桌面独立应用程序的最佳方法(排除雅虎小部件和 Windows 侧边栏或 Google 小部件)。
到目前为止,我已经考虑使用 Adobe Air 来实现,因为它为桌面应用程序带来了 Web 技能,并提供了漂亮的外观和功能。对应用程序的感受。
谢谢
I would like to implement a desktop based ticker. The ticker would display number of users that have signed up for a product on a related PHP website. This data is stored in a MySQL database. The ticker gets updated every time a new user signs up. This would be easy to implement if it was web based, can you suggest me the best way to implement this as a desktop standalone application(Rules out Yahoo widgets and Windows sidebar or Google widgets).
So far I have considered implementing using Adobe air as it brings web skills to desktop application and gives a nice look & feel to the application.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 JavaScript (jQuery) 创建一个小部件,并让它通过 AJAX 从 PHP(可能是 Zend 或 Yii)应用程序每 1 分钟获取一次数据。
Make a widget with JavaScript (jQuery) and let it fetch data every 1 min via AJAX from your PHP (maybe Zend or Yii) application.
如果我理解正确的话,您只需要一个简单的桌面应用程序,其目的只有一个:“显示定期更新的数据”。对于此任务,您几乎可以使用任何您想要的语言 - 为了实现平台独立性,您可以使用 java、.net(带有 mono)或任何脚本语言(甚至 php)。
没有一种语言最适合这项简单的任务,因此只需选择一种您知道的语言(或一种您想学习的语言)即可。
我会使用 Java,但这可能是因为我没有创建独立于平台的 C 代码的背景。
也许你可以更详细地描述你的想法,这可能会缩小范围。
If I understand you correctly, you just want a simple desktop application with just one purpose: "Display data that gets regularly updated". For this task you can use almost any language you want - to achieve platform independence, you can use java, .net (with mono) or any scripting language (even php).
There is no language that suits this simple task best, so just pick one you know (or one you want to learn).
I would use Java, but that's maybe because I have no background in creating platform independent C-code.
Maybe you could describe your idea in more detail, that might narrow it down.