I have a page with a register form, after submit form and return response success, i need to call another component in the same page, without reload page, how to do this?
Method post from form with response:
JavaScript
x
19
19
1
axios( {
2
method: 'post',
3
// url: 'https://reqres.in/api/users',
4
url: 'http://127.0.0.1:8000/api/clients',
5
data: contactFormData
6
}).then( function ( response ) {
7
8
// Handle success.
9
10
console.log( response );
11
12
}).catch( function ( response ) {
13
14
// Handle error.
15
16
console.log( response );
17
18
});
19
Advertisement
Answer
I assume you mean ‘reveal’ the component after response successful? You can try below:
JavaScript
1
9
1
<template>
2
<div class="main-container">
3
<div class="register-form">
4
5
</div>
6
<AnotherComponent v-if="isAnotherComponentShow" />
7
</div>
8
</template>
9
Then in js part:
JavaScript
1
20
20
1
export default {
2
data() {
3
return {
4
isAnotherComponentShow: false
5
}
6
},
7
methods: {
8
register() {
9
axios({
10
method: 'post',
11
url: 'http://127.0.0.1:8000/api/clients',
12
data: contactFormData
13
}).then( function ( response ) {
14
this.isAnotherComponentShow = true
15
// handle res
16
}).catch( function ( response ) {})
17
}
18
}
19
}
20