vuex使用 async / await时报错

在新建的new Vuex.Store中设置了actions,并且设置async / await,代码如下:

        async actthree:(context)=>{
            context.commit('alertthree',await alertthree())
        },
        async actfour:(context)=>{
            await dispatch('actthree')
            commit('alertfour',await alertfour())
        }
    

但是在控制台中报错为:

clipboard.png

请问如何修改呢?

阅读 5.8k
3 个回答

从语法上有

var a = {
    myAsyncFunction: async() => {
    }
}
//或者
var a = {
    async myAsyncFunction() {}
}

并没有async fnName:()=>{}

async 放到冒号后边

没有这种写法

1:
async test(){
  console.log(1)
}
2:
test2:async ()=>{
  console.log(2)
}
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题