两个node 后端请求包(superagent和request)的get请求有什么不同吗?

  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却得到空。


有只小跳蛙
浏览 577回答 1
1回答

侃侃尔雅

如果响应的content-type为text,superagent会放在response.text里。
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript