vert-x 3.3.2 http 客户端异常处理程序

vert-x 3.3.2 http client exception handler

我正在使用 Vert-x 3.3.2。

HttpClient.exceptionHandler 和 HttpClientRequest.exceptionHandler 抛出编译错误。

是否为此类删除异常处理程序。

任何其他方式来处理这个问题。

    var client = vertx.createHttpClient(options);
    var request = client.getNow(8080, "localhost", data, function (resp)  {

            resp.bodyHandler(function (body) {
                console.log(body.toString());
            });
            resp.exceptionHandler(function(err){
                console.log("Response Exception:::"+err.getCode());
            });

    });
    request.exceptionHandler(function(Err){
        console.log("Client Exception ::: "+Err);
    });

也试过

    client.exceptionHandler(function(Err){
        console.log("Client Exception ::: "+Err);
    });

谁能帮忙解决这个问题。

您正在使用 getNow() 方法。 xxxNow() 方法不接收异常处理程序: http://vertx.io/docs/vertx-core/js/#_making_requests

IMPORTANT XXXNow methods cannot receive an exception handler.