Vue项目中Api的组织和返回数据处理的操作(2)

import { mapActions } from 'vuex' import apiFunc from '../services' export default { methods: { ...mapActions('common', [ 'login' ]), async onLogin() { const params = {} const res = await apiFunc.login(params) } } }

注意在使用 async/await 时如果外层的错误没有捕捉到,最好加一层 try...catch... 。

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/35f6c2f38bc4290782d277346b4cbaca.html