-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.js
46 lines (45 loc) · 1023 Bytes
/
test.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
var rp = require('request-promise');
var options = {
method: 'POST',
uri: 'http://localhost:8080/layers/filter',
body: {options: [1, 4, 3, 5]},
json: true
};
rp(options)
.then(parsedBody => {
console.log(parsedBody);
});
// var http = require('http');
// var querystring = require('querystring');
//
// var postData = querystring.stringify({options: [1, 4, 22, 33]});
//
// console.log(postData);
//
// var options = {
// hostname: 'localhost',
// port: '8080',
// path: '/layers/filter',
// method: 'POST',
// headers: {
// 'Content-Type': 'application/x-www-form-urlencoded',
// 'Content-Length': Buffer.byteLength(postData)
// }
// };
//
// var req = http.request(options, res => {
// res.on('data', chunk => {
// console.log(chunk);
// });
// res.setEncoding('utf8');
// res.on('end', () => {
// console.log("DONE");
// });
// });
//
// req.on('error', e => {
// console.log(`problem with request: ${e.message}`);
// });
//
// req.write(postData);
// req.end();