有时候会有用到回调的问题,下面是具体使用方法。
// 需进行回调的方法
myListLoad(){
return new Promise((resolve, reject) => {
// 方法体
}
}
// 调用
this.myListLoad().then(() => {
// 方法体,在此编写调用之后的方法。
}
有时候会有用到回调的问题,下面是具体使用方法。
// 需进行回调的方法
myListLoad(){
return new Promise((resolve, reject) => {
// 方法体
}
}
// 调用
this.myListLoad().then(() => {
// 方法体,在此编写调用之后的方法。
}
评论区