Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
3.7k views
in Technique[技术] by (71.8m points)

vue.js - Unexpected uncaught exception with Vuex action and Composition API

In the context of Vuex with the composition API for Vue2, I am trying to understand the difference between:

// component/Register.vue
setup() {
  // ...
  function onSubmit() {
      store.dispatch('auth/register', form).then(() => {
          console.log('success')
      })
      .catch(error => {
        console.log('error')
      })
    }
  // ...
  return { onSubmit }
}

and the classic component method:

// component/Register.vue
methods: {
  // ...
  onSubmit() {
    store.dispatch('auth/register', this.form).then(() => {
      console.log('success')
    })
    .catch(error => {
      console.log('error')
    })
  }
// ...
}

and the vuex register action:

// store/module/auth/auth.action.js
async register(ctx, user) {
  console.log('Start registering user')

  try {
    const account = await myApiService.createUser(user.email, user.password)
  } catch (error) {
    throw error
  }
}

Now, let's assume that my API service is throwing an exception. I am having two different outputs between the composition API onSubmit() and the classic onSubmit() method:

Using onSubmit() method:

DevTools

Using composition API onSubmit() function in setup():

DevTools

As you can see, using the Composition API, I have an extra Uncaught exception. Any idea why this exception is not caught by my component catch() method?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神解答

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...