Answer the question
In order to leave comments, you need to log in
How to return a promise from another file?
Hello.
There is a login file with code
this.$store.dispatch('checkAuth')
.then((response) => {
console.log(response);
// тут нужно получить true и залогинется
})
.catch((error) => {
console.error(error);
});
this.dispatch('refreshToken')
.then((response) => {
console.log(response);
// тут нужно получить true и отправить в предыдущую функцию
})
.catch((error) => {
console.error(error);
});
refreshToken() {
axios.post(apiUrl, data)
.then((response) => {
console.log(response);
// тут нужно получить true и отправить в предыдущую функцию
})
.catch((error) => {
console.error(error);
});
}
Answer the question
In order to leave comments, you need to log in
return Promise resolve(true);
return Promise reject(true);
In general, I advise you to start with the documentation https://learn.javascript.ru/promise
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question