superagent 和axios 对比

superagent在调用的时候,可以取到response.body,这是正常json的时候,但是如果返回的content-type是 text/html的时候,需要取response.text,然后try catch,JSON.parse一下。

axios 直接取response.data 没有上述问题

你可能感兴趣的:(superagent 和axios 对比)