vue的项目中现在有这两个方法,有个C方法,需要在这两个异步请求的方法完成后才执行,要怎么写,新手求问,
这两个方法都使用了es6的promise 和 axios这个库
created() {
this._getChannelList()
this._getRecentContact()
},
method: {
_getChannelList() {
getChannelList(this.getCookie('sender'), this.getCookie('version')).then(res => {
// 成功
}).catch(err => {
console.log(err)
})
},
_getRecentContact() {
getRecentContact(this.getCookie('sender')).then(res => {
// 成功
}).catch(err => {
console.log(err)
})
},
c() {
// 需要在上面两个方法都请求完毕才执行
}
}
缥缈止盈
拉风的咖菲猫
相关分类