Flex 4 - 将 HTTPService 对象发送的数据传递给结果处理程序
我有一个由 HTTPService 对象作为 POST 请求发送的数据对象,但我希望能够访问结果处理程序中的数据对象。最好的方法是什么?
I have a data object that gets sent as a POST request by an HTTPService object, but I want to be able to access the data object in the result handler. What is the best way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
AsyncToken 是一个动态对象,因此您可以在运行时添加属性。
然后,在结果处理程序中,您可以使用以下命令访问令牌:
AsyncToken is a dynamic object so you can add properties at runtime.
Then, in your result handler, you acces the token with :