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();
看起来像是同步通话。
这是真的吗?