为了账号安全,请及时绑定邮箱和手机立即绑定

关于vuex中使用 async / await时报错的问题

关于vuex中使用 async / await时报错的问题

波斯汪 2019-03-20 10:19:19
在新建的new Vuex.Store中设置了actions,并且设置async / await,代码如下:        async actthree:(context)=>{            context.commit('alertthree',await alertthree())        },        async actfour:(context)=>{            await dispatch('actthree')            commit('alertfour',await alertfour())        }    但是在控制台中报错为:请问如何修改呢?
查看完整描述

3 回答

?
RISEBY

TA贡献1856条经验 获得超5个赞

从语法上有


var a = {

    myAsyncFunction: async() => {

    }

}

//或者

var a = {

    async myAsyncFunction() {}

}

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


查看完整回答
反对 回复 2019-04-02
?
杨__羊羊

TA贡献1943条经验 获得超7个赞

async 放到冒号后边


查看完整回答
反对 回复 2019-04-02
?
白板的微信

TA贡献1883条经验 获得超3个赞

没有这种写法


1:

async test(){

  console.log(1)

}

2:

test2:async ()=>{

  console.log(2)

}


查看完整回答
反对 回复 2019-04-02
  • 3 回答
  • 0 关注
  • 468 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信