Flashbuilder 4.5。解析HTTP服务调用的结果
我正在使用 Flash Builder 4.5 进行 HTTP 服务调用。我的网络服务返回一个字符串。我无法理解如何读取返回的字符串。
LoginResult.token = login.Login(Username.text, Password.text);
这是我到目前为止所拥有的。接下来我需要做什么才能获取返回的字符串?
I'm making an HTTP Service Call using Flash Builder 4.5. My web service returns a string. I'm having trouble understanding how to read in the returned string.
LoginResult.token = login.Login(Username.text, Password.text);
Here is what I have so far. What do I need to do next to get the returned string?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
想通了。如果这对其他人有帮助,以下内容将获取 HTTP 服务调用返回的字符串。
Figured it out. In case this will help anyone else, the following gets you the String returned by the HTTP Service Call.