superagent ???
发布于 15 天前 作者 kelvv 214 次浏览 来自 问答

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: 返回正常 1.pic.jpg

superagent还需要配置什么吗?

回到顶部