function getMusicName() {
db()
.then(function(connection) {
var sql = 'select name from musicInfo';
return queryMusicInfo(connection,sql);
},fail)
.then(function(res){
console.log(res)
})
}
因为then中很多函数都是异步的。
有没有什么办法在getMusicName这个函数中获取最后这个then返回的结果呢?还是promise有没有什么机制能够解决这种问题呢?
扬帆大鱼
相关分类