使用superagent发帖请求,发送为get

时间:2016-10-14 05:10:03

标签: node.js post superagent

我使用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。 任何人都知道它的用途是什么?

0 个答案:

没有答案