Flex 和 CGI 新手:如何让他们说话
我是一名 Flex 开发人员,以前从未使用过 CGI。我想创建一个解决方案,让 A flex 调用 CGI 脚本来读取数据库。我一直在尝试寻找有关此类解决方案如何工作的示例。我希望这里有人能够阐明它是如何工作的,以及所需的各种组件是什么。 谢谢
I am a Flex developer and never used CGI before. I wanted to create a solution whereby A flex would call a CGI script to read a database. Ive been trying to look for examples on how such a solution would work. I was hoping someone on here might be able to shed some light as to how this would work, and what are the various components required.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用
URLLoader
类来完成此操作。使用 urlloader 类加载 CGI url - 使用 cgi 脚本执行查询并返回响应 - 在URLLoader
的complete
事件处理程序中处理结果。有关使用 URLLoader 类的详细信息,请查看此答案 。You can do it with the
URLLoader
class. Load the CGI url using the urlloader class - execute queries using cgi script and return the response - handle the results in thecomplete
event handler ofURLLoader
. Check this answer for details on using the URLLoader class.也许最简单的方法是从 CGI 输出 XML 并使用 Flex 的 HTTPService 连接到 CGI 并获取数据。发送更新可以通过 HTTPService 发送 HTTP 请求参数来完成。
Probably the easiest way is to output XML from your CGI and use Flex's HTTPService to connect to the CGI and get data. Sending updates can be done through sending HTTP Request Parameters via HTTPService.