我可以仅使用 Flash/Actionscript 3 为 Web/AIR 制作一个客户自助产品选择工具吗?
我可以仅使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
纯 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:
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).