admin管理员组文章数量:1346283
I am handling an upload for images - based on a Promise. In the "then" - callback I want to $emit an event. I call it 'success'. My VueDevTools shows me an success event, but in the parent ponent the "linked" method is never called. Is it possible that this.$emit('success') does not work within Promises?
Example Code - Child ponent:
UsersAPI.updateAvatar(this.user.id, data, fileExt).then(res => {
if (res) {
Helpers.callToast(this, 'is-success', this.$root.$t('profile.avatar_upload'))
this.$emit('success')
}
})
Example Code - Parent Component
<Avatar @success="test" :user="user" />
The method "test" in parent ponent is NEVER called, but the event is called in the vue dev tools. If I emit the event before the Promise, I get the result I wish.
Can you may help me? Kind regards
I am handling an upload for images - based on a Promise. In the "then" - callback I want to $emit an event. I call it 'success'. My VueDevTools shows me an success event, but in the parent ponent the "linked" method is never called. Is it possible that this.$emit('success') does not work within Promises?
Example Code - Child ponent:
UsersAPI.updateAvatar(this.user.id, data, fileExt).then(res => {
if (res) {
Helpers.callToast(this, 'is-success', this.$root.$t('profile.avatar_upload'))
this.$emit('success')
}
})
Example Code - Parent Component
<Avatar @success="test" :user="user" />
The method "test" in parent ponent is NEVER called, but the event is called in the vue dev tools. If I emit the event before the Promise, I get the result I wish.
Can you may help me? Kind regards
Share Improve this question asked Jan 8, 2020 at 1:46 NisNis 1811 gold badge2 silver badges8 bronze badges 3-
Using
$emit
within a Promise should work fine, so long as you get thethis
binding correct. It appears to be correct in the code provided and if it were wrong you'd see a console error about$emit
not being a function. How are you ascertaining thattest
isn't being called? I suggest adding some console logging or adebugger
statement in the child ponent to check exactly what's going on in there. My current feeling is that the problem does not lie within the code you've posted. – skirtle Commented Jan 8, 2020 at 4:01 -
BTW, what is
this.$root.$t
? there's a typo mistake I think, it should bethis.$root.$emit
isn't it? – Naren Commented Jan 10, 2021 at 7:43 -
Also, can you show us
Helpers.callToast
what's in here? – Naren Commented Jan 10, 2021 at 7:44
2 Answers
Reset to default 10In my case, the child ponent was removed from the parent using "v-if" directive when an API request was initialized.
Then, when my request finished, the child ponent emitted an event correctly, but in this moment the child wasn't rendered in the parent ponent's DOM, so the parent couldn't listen to that event.
I think it was because of the 'this' binding.
You need to bind the this
of Vue ponent instance into the callback function.
const callbackFn = function(res) {
if (res) {
Helpers.callToast(this, 'is-success', this.$root.$t('profile.avatar_upload'))
this.$emit('success')
}
}.bind(this);
UsersAPI.updateAvatar(this.user.id, data, fileExt).then(callbackFn)
or you could simply create a new variable to save your Vue instance, then refer your callback function to use it.
const self = this;
UsersAPI.updateAvatar(this.user.id, data, fileExt).then(res => {
if (res) {
Helpers.callToast(this, 'is-success', self.$root.$t('profile.avatar_upload'))
self.$emit('success')
}
})
本文标签: javascriptVue emit in PromiseStack Overflow
版权声明:本文标题:javascript - Vue $emit in Promise - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743827811a2545968.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论