superagent ???
superagent 返回body为空:
request
.post("127.0.0.1:8080")
.send({
num:'1',
num1:'12',
type:'add'
})
.set('Content-Type', 'application/x-www-form-urlencoded')
.set('Accept', 'application/json')
.end(function(err,res){
if (res.ok) {
resove('yay got ' + JSON.stringify(res.body));
} else {
console.log('Oh no! error ' + res.text);
}
})
postman: 返回正常
superagent还需要配置什么吗?