如何访问REST服务的ActionScript 3? [英] How to access REST service in Actionscript 3?

查看:195
本文介绍了如何访问REST服务的ActionScript 3?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在写一个API服务'的http://本地主机:3000 / API /用户/ ID',做一个GET,可以得到一个JSON响应

I have write a api service at 'http://localhost:3000/api/user/id', do a GET, can get a JSON response.

如何从ActionScript3的访问这项服务?

How to access this service from actionscript3?

推荐答案

您可以使用一个简单的做​​到这一点的URLRequest

You can do this using a simple URLRequest:

var loader:URLLoader = new URLLoader();
loader.dataFormat = URLLoaderDataFormat.TEXT;
loader.addEventListener(Event.COMPLETE, loaderCompleteHandler);
loader.addEventListener(HTTPStatusEvent.HTTP_STATUS, httpStatusHandler);
loader.addEventListener(SecurityErrorEvent.SECURITY_ERROR, securityErrorHandler);
loader.addEventListener(IOErrorEvent.IO_ERROR, ioErrorHandler);

try
{
    loader.load(new URLRequest("http://localhost:3000/api/user/id"));
}
catch (error:Error)
{
    trace("Error loading URL: " + error.message);
}

function loaderCompleteHandler(e:Event):void
{
    // and here's your response (in your case the JSON)
    trace(e.target.data);
}

function httpStatusHandler(e:HTTPStatusEvent):void
{
    trace("httpStatusHandler:" + e.status);
}

function securityErrorHandler(e:SecurityErrorEvent):void
{
    trace("securityErrorHandler:" + e.text);
}

function ioErrorHandler(e:IOErrorEvent):void
{
    trace("ioErrorHandler: " + e.text);
}

这篇关于如何访问REST服务的ActionScript 3?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆