Flex 远程处理和进度事件?
使用 Flex 远程处理时,有没有办法监控加载进度(百分比进度条样式)?
我正在尝试 Flash Builder 4 及其新的数据服务功能,但我在某处找不到任何 pgrogress 事件内容。 Robert Taylor 的这篇文章 http://www.roboncode.com/articles/144 指出也许不可能...
Is there a way to monitor the loading progress (percent progress bar style) when using Flex remoting?
I'm trying out Flash Builder 4 with it's new data services features, but I can't find any pgrogress event stuff somewhere. This article by Robert Taylor http://www.roboncode.com/articles/144 indicates that it might not be possible...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,你不能这样做。当调用远程方法时,你启动一个包含 AMF 消息(序列化输入参数和目标/方法名称)的 HTTP POST 调用,并在响应时收到 AMF 响应。没有办法告诉您进度,并且解决方法意味着大量工作(您必须创建一个套接字并在 AMF 之上构建迷你协议)。
No you can not do that..when calling a remote method you launch an HTTP POST call containing the AMF message (serialized input parameters and the destination/method name) and on response you receive the AMF response. There is no way to tell you the progress and the workaround implies a lot of work (you will have to create a socket and build your mini protocol on top of AMF).