superagent-promise

var Promise this.Promise || require('promise');

var agent require('superagent-promise')(require('superagent'), Promise);
 
// method, url form with `end` 
agent('GET''http://google.com')
  .end()
  .then(function onResult(res{
    // do stuff 
  }function onError(err{
    //err.response has the response from the server 
  });
 
// method, url form with `then` 
agent('GET''http://google.com')
  .then(function onResult(res{
    // do stuff 
  });
 
 
// helper functions: options, head, get, post, put, patch, del 
agent.put('http://myxfoo''data')
  .end()
  .then(function(res{
    // do stuff` 
  });
 
// helper functions: options, head, get, post, put, patch, del 
agent.put('http://myxfoo''data').
  .then(function(res{
    // do stuff 
  });
posted @ 2017-08-09 17:06  G-Beniot  阅读(602)  评论(0编辑  收藏  举报