superagent
// 设置些需要的头
.get('http://passport.chinahr.com/ajax/m/existLoginName')
.query('input' + "=" + 15800000000)
.end(function (err, response) {
console.log('返回', response.body, err)
});
request
.get('http://passport.chinahr.com/ajax/m/existLoginName?input=15800000000', function (err, res) {
console.log('req', res.body)
})
请求中华人才网的一个接口,用request.get 能正确返回想要的结果用superagent却得到空。
侃侃尔雅
相关分类