SuperAgent EndAsync

时间:2018-03-28 07:21:32

标签: javascript promise superagent

Superagent Documentation https://www.npmjs.com/package/superagent-as-promised

request
.get('/location')
.then( function(response) {
  console.log("Got "+response.text);
})
.catch( function(error) {
  console.dir(error);
})

是语法糖:

var promise = request
  .get('/location')
  .endAsync();

promise
  .then( function(response) {
    console.log("Got "+response.text);
  })
  .catch( function(error) {
    console.dir(error);
  })

但是endAsync()方法听起来好像在等待解决的承诺,这是真的吗?如果这是真的那么行'

request
      .get('/location')
      .endAsync();

看起来像是同步通话。

这是真的吗?

0 个答案:

没有答案