我可以仅使用 Flash/Actionscript 3 为 Web/AIR 制作一个客户自助产品选择工具吗?

发布于 2024-10-03 11:37:55 字数 262 浏览 4 评论 0原文

我可以仅使用 Flash/Actionscript 3 为 Web/AIR 制作一个客户自助产品选择工具,而无需使用 SQLite 等单独的数据库吗?

本质上,在选择一般类别后,客户将与其需求相关的标签词拖放到相邻的框中,并且与这些标签相对应的产品列表(从最大到最小)出现在旁边的框中。

我知道数据库驱动的应用程序确实在增长,但我不清楚这种情况是否真的值得,因为我才刚刚开始学习 (Lynda.com),并且更多地来自于内容/设计心态。

谢谢你,请原谅我的笨蛋。

Can I make a customer self-service product selection tool for the web/AIR with just Flash/Actionscript 3 without having to use a separate database like SQLite?

Essentially, after selecting a general category, the client drags and drops the tag words relevant to their needs into an adjacent box and a list of products that correspond to those tags, from greatest to least, appears in the box next that.

I know that database driven apps are really on the rise but I am not clear if this situation really warrants it as I am just starting to learn (Lynda.com) and am coming from more of a content/design mentality.

Thank you and pardon my noobness.

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

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

发布评论

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

评论(1

水波映月 2024-10-10 11:37:55

纯 ActionScript 3 工具可以正常工作,但无论您以哪种方式对其进行切片,都必须以某种方式存储哪些产品映射到哪些标签。无论您是通过数据库、XML 文件还是只是将其编译到您的应用程序中来执行此操作,都将取决于许多因素,包括:

  • 您拥有多少产品;
  • 该应用程序是否需要互联网连接?
  • 数据库需要多久更新一次。

等等。另请注意,您只能在 AIR 中拥有本地 SQLite 数据库。在 Web 浏览器中运行时,该 API 不可用(无论如何,对于 Flash 应用程序)。

A pure ActionScript 3 tool would work fine, but no matter which way you slice it you will have to store somehow which products map to which tags. Whether you do this via a database, a XML file or just compile it into your application will depend many things including:

  • How many products you have;
  • Will the application required an Internet connection;
  • How often will the database need to update.

and so on. Note also, that you will only be able to have a local SQLite database in AIR. When running in a web browser that API is not available (for Flash apps, anyway).

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