使两个vue方法同步

时间:2019-03-21 18:06:28

标签: javascript vue.js vuejs2

我目前有两种vue方法:

(1)this.get_saved_searches()

(2)this.update_default_select_option()

如何使方法(2)仅在方法(1)完成后运行?

1 个答案:

答案 0 :(得分:1)

除了德里克·波拉德(Derek Pollard)所说的以外,还要让这两种方法都返回promise,并使用async / await来实现您要寻找的东西

资料来源:Promisesasync/await

async bar(){
    await this.get_saved_searches();
    await this.update_default_select_option();
}