如何从Haxe / Neko发送HTTP PUT请求?

时间:2014-12-07 17:49:19

标签: rest haxe neko

我有一台在NekoVM下运行的服务器,它提供RESTLike服务。我正在尝试使用以下Haxe代码向此服务器发送PUT / DELETE请求:

static public function main()
{
    var req : Http = new Http("http://localhost:2000/add/2/3");
    var bytesOutput = new haxe.io.BytesOutput();

    req.onData = function (data)
    {
        trace(data);
        trace("onData");
    }

    req.onError = function (err)
    {
        trace(err);
        trace("onError");
    }

    req.onStatus = function(status)
    {
        trace(status);
        trace("onStatus");
        trace (bytesOutput);
    }

    //req.request(true); // For GET and POST method

    req.customRequest( true, bytesOutput , "PUT" );

}

问题是只有onStatus事件显示了一些内容:

Main.hx:32: 200
Main.hx:33: onStatus
Main.hx:34: { b => { b => #abstract } }

任何人都可以解释我customRequest的错误吗?

2 个答案:

答案 0 :(得分:3)

customRequest不会致电onData

customRequest调用完成后,调用了onError或调用了第一个onStatus,然后将响应写入指定的输出。

答案 1 :(得分:1)

对于那些找到这些答案(@stroncium's是正确的答案)并想知道完成的代码是什么样的人来说

static public function request(url:String, data:Any) {
    var req:Http = new haxe.Http(url);
    var responseBytes = new haxe.io.BytesOutput();

    // Serialize your data with your prefered method
    req.setPostData(haxe.Json.stringify(data)); 
    req.addHeader("Content-type", "application/json");

    req.onError = function(error:String) {
        throw error;
    };

    // Http#onData() is not called with custom requests like PUT

    req.onStatus = function(status:Int) {
        // For development, you may not need to set Http#onStatus unless you are watching for specific status codes
        trace(status);
    };

    // Http#request is only for POST and GET
    // req.request(true);

    req.customRequest( true, responseBytes, "PUT" );

    // 'responseBytes.getBytes()' must be outside the onStatus function and can only be called once
    var response = responseBytes.getBytes();

    // Deserialize in kind
    return haxe.Json.parse(response.toString());
}

我做了一个gist