소스 검색

HttpNodeJs when no connection (#12137)

* Update HttpNodeJs.hx

Request can error when there is no connection

* passes error
M 5 달 전
부모
커밋
3644e6ac83
1개의 변경된 파일3개의 추가작업 그리고 1개의 파일을 삭제
  1. 3 1
      std/haxe/http/HttpNodeJs.hx

+ 3 - 1
std/haxe/http/HttpNodeJs.hx

@@ -123,7 +123,9 @@ class HttpNodeJs extends haxe.http.HttpBase {
 				req.setHeader("Content-Length", '${postBytes.length}');
 				req.write(Buffer.from(postBytes.getData()));
 			}
-
+		req.on('error', function(e) {
+            		onError(e);
+         	});
 		req.end();
 	}
 }