我使用superagent发布了一个帖子请求:
var postUsage = function(postUsage_CB) {
var expectedStatusCode = 201;
var timeStart = new Date();
request
.post(serviceEndPoint)
.send(object)
.end(function(err, res) {
resCode = res.statusCode;
console.log('\n' + 'postUsage - res.statusCode = ',resCode);
if (res.statusCode != expectedStatusCode){
console.log('\n' + 'postUsage - res.text = ',res);
throw 'POST usage failed';
}
else {
header_location = res.headers.location;
return postUsage_CB();
}
});
};
虽然我在标题中看到响应内部,但它表示请求方法已获取。 而且我可以在我发布的端点的日志信息中看到,它显示方法是get。 任何人都知道它的用途是什么?