node.js http.get() 得到的 response 不是想要的
PHP中文网
PHP中文网 2017-04-17 15:59:37
0
1
442

node.js 访问 java api 的地址:
http://localhost:9000/zlkcxd/...

如果在 js 中使用 ajax 可以得到正常的返回
{exception: null, message: '账号密码错误', success: false}

但是使用 http.get("http:...上面的地址", fuction(res){console.log(res)})
此处 res 打印出来的是很多乱七八糟的参数

PHP中文网
PHP中文网

认证0级讲师

reply all (1)
洪涛
http.get('http://www.example.com/', function (response) { var body = []; console.log(response.statusCode); console.log(response.headers); response.on('data', function (chunk) { body.push(chunk); }); response.on('end', function () { body = Buffer.concat(body); console.log(body.toString()); }); });

Source: http://nqdeng.github.io/7-day...

    Latest Downloads
    More>
    Web Effects
    Website Source Code
    Website Materials
    Front End Template
    About us Disclaimer Sitemap
    php.cn:Public welfare online PHP training,Help PHP learners grow quickly!