-
Notifications
You must be signed in to change notification settings - Fork 94
/
Copy pathtest_http.js
55 lines (48 loc) · 1.17 KB
/
test_http.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
var http = require("http");
var BufferModule = require("buffer");
var Buffer = BufferModule.Buffer;
var data_A = "Data to upload..";
var data_B = "more data";
print(data_A.length);
print(data_B.length);
// var request = http.request(
// {
// port: 7777,
// host: "http://192.168.31.20",
// path: "/",
// method: "GET",
// headers: {},
// },
// function (response) {
// print("Got response");
// print(response);
// if (response)
// response.on("data", function (chunk) {
// var buf2 = new Buffer(chunk);
// print(buf2.toString());
// print("come in.......");
// print(chunk);
// });
// }
// );
var request = http.get({
port: 7777,
host: "http://192.168.31.20",
path: "/",
method: "GET",
headers: {},
});
request.on("response", function (response) {
print("Got response:");
print(response);
if (response)
response.on("data", function (chunk) {
var buf2 = new Buffer(chunk);
print(buf2.toString());
print("come in.......");
print(chunk);
});
});
request.end(132, function () {
print("execute here!!!");
});