0
Vert-x 3.3.2を使用しています。vert-x 3.3.2 httpクライアント例外ハンドラ
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);
});
誰もがこの上で助けてもらえを試してみました。
お返事ありがとうございます。次に、ここで例外をキャッチする方法。 – madz
**ありがとうございます** soshin ..これは実際に私の問題を解決しました。どうもありがとうございます。 – madz