Vue: Losing context of “this” inside function promiseVue display unescaped htmlvue resource promise callbackVue 2 - Mutating props vue-warnVue - Call Function from facebook button inside Vue-ComponentCan't set property inside of Axios promise in Vue JSVue.js - this.$refs.key returns an empty array or undefined instead of elementVue | Call method function inside of dataVueJS: variable is undefined inside computed onlyHow to use async/await inside promise - VueCreate a Vue Promise Function
Can I get a photo of an Ancient Arrow?
Am I allowed to determine tenets of my contract as a warlock?
What did the 8086 (and 8088) do upon encountering an illegal instruction?
What do I need to do, tax-wise, for a sudden windfall?
Does WiFi affect the quality of images downloaded from the internet?
How to represent jealousy in a cute way?
How do I type a hyphen in iOS 12?
Harley Davidson clattering noise from engine, backfire and failure to start
Why does there seem to be an extreme lack of public trashcans in Taiwan?
Was the Lonely Mountain, where Smaug lived, a volcano?
Why did Robert pick unworthy men for the White Cloaks?
David slept with Bathsheba because she was pure?? What does that mean?
Placement of positioning lights on A320 winglets
Must a CPU have a GPU if the motherboard provides a display port (when there isn't any separate video card)?
Realistic, logical way for men with medieval-era weaponry to compete with much larger and physically stronger foes
Did I need a visa in 2004 and 2006?
How (un)safe is it to ride barefoot?
Is it advisable to add a location heads-up when a scene changes in a novel?
The best in flight meal option for those suffering from reflux
Which are the methodologies for interpreting Vedas?
Do Veracrypt encrypted volumes have any kind of brute force protection?
Part of my house is inexplicably gone
How to deal with an excess of white-space in a CRM UI?
Nth term of Van Eck Sequence
Vue: Losing context of “this” inside function promise
Vue display unescaped htmlvue resource promise callbackVue 2 - Mutating props vue-warnVue - Call Function from facebook button inside Vue-ComponentCan't set property inside of Axios promise in Vue JSVue.js - this.$refs.key returns an empty array or undefined instead of elementVue | Call method function inside of dataVueJS: variable is undefined inside computed onlyHow to use async/await inside promise - VueCreate a Vue Promise Function
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
I am losing the context of this on the "then" portion of my Promise. I marked the first debugger, which when I type in this
, shows the value as the Vue component. I continue on and when I hit the next debugger statement inside the then
portion of the Promise, the value of this
is undefined even when using the fat arrow syntax.
Parent component
<Modal
@emitshowflashmsg="handleShowCouponModal"
>
Child component (Modal.vue
)
methods:
showFlash: function(msg, bool)
let data = msg, bool
this.$emit('emitshowflash', data)
,
updateShippingAddress: function()
debugger
// `this` has a value here
axios.post('/api/act/address',
street_address: this.$refs.streetAddress.value ? this.$refs.streetAddress.value : "",
apartment: this.showSecondAddressLine ? this.$refs.apartment.value : "",
city: this.$refs.city.value ? this.$refs.city.value : "",
state: this.$refs.state.value ? this.$refs.state.value : "",
zip: this.$refs.zip.value ? this.$refs.zip.value : ""
)
.then((response) =>
debugger
// `this` is undefined here
if(response.data.success)
let msg = "Address updated!"
this.showFlash(msg, true)
)
.catch(err =>
console.log("errrrr")
let msg = "Not valid address. Please check address again."
this.showFlash(msg, true)
);
vue.js
|
show 5 more comments
I am losing the context of this on the "then" portion of my Promise. I marked the first debugger, which when I type in this
, shows the value as the Vue component. I continue on and when I hit the next debugger statement inside the then
portion of the Promise, the value of this
is undefined even when using the fat arrow syntax.
Parent component
<Modal
@emitshowflashmsg="handleShowCouponModal"
>
Child component (Modal.vue
)
methods:
showFlash: function(msg, bool)
let data = msg, bool
this.$emit('emitshowflash', data)
,
updateShippingAddress: function()
debugger
// `this` has a value here
axios.post('/api/act/address',
street_address: this.$refs.streetAddress.value ? this.$refs.streetAddress.value : "",
apartment: this.showSecondAddressLine ? this.$refs.apartment.value : "",
city: this.$refs.city.value ? this.$refs.city.value : "",
state: this.$refs.state.value ? this.$refs.state.value : "",
zip: this.$refs.zip.value ? this.$refs.zip.value : ""
)
.then((response) =>
debugger
// `this` is undefined here
if(response.data.success)
let msg = "Address updated!"
this.showFlash(msg, true)
)
.catch(err =>
console.log("errrrr")
let msg = "Not valid address. Please check address again."
this.showFlash(msg, true)
);
vue.js
Ignoring the debugger for a minute, are you getting any actual errors? Ifthis
was not your Vue component in thethen()
callback, I imagine you would get something like "this.showFlash is not a function". Is that what's happening?
– Phil
Mar 25 at 0:23
@Phil yea, that's how I noticed there was an issue.this.showFlash
is triggering the catch and loggingerrrrr
. When I removedthis.showFlash()
, the catch is not triggered
– jjoan
Mar 25 at 0:26
Are you absolutely certain you're using an arrow function inthen()
andcatch()
? Perhaps your browser is running an older version of your script from cache
– Phil
Mar 25 at 0:27
1
Just noticed your parent component is listening foremitshowflashmsg
but you are emittingemitshowflash
. Now, that wouldn't cause the issue you're seeing but it certainly won't do what you expect
– Phil
Mar 25 at 1:42
1
@Phil Aside of that,emitshowflashmsg
is callinghandleShowCouponModal
method (from modal's parent component), but only modal'supdateShippingAddress
method is shown. Real mess :)
– Styx
Mar 25 at 15:05
|
show 5 more comments
I am losing the context of this on the "then" portion of my Promise. I marked the first debugger, which when I type in this
, shows the value as the Vue component. I continue on and when I hit the next debugger statement inside the then
portion of the Promise, the value of this
is undefined even when using the fat arrow syntax.
Parent component
<Modal
@emitshowflashmsg="handleShowCouponModal"
>
Child component (Modal.vue
)
methods:
showFlash: function(msg, bool)
let data = msg, bool
this.$emit('emitshowflash', data)
,
updateShippingAddress: function()
debugger
// `this` has a value here
axios.post('/api/act/address',
street_address: this.$refs.streetAddress.value ? this.$refs.streetAddress.value : "",
apartment: this.showSecondAddressLine ? this.$refs.apartment.value : "",
city: this.$refs.city.value ? this.$refs.city.value : "",
state: this.$refs.state.value ? this.$refs.state.value : "",
zip: this.$refs.zip.value ? this.$refs.zip.value : ""
)
.then((response) =>
debugger
// `this` is undefined here
if(response.data.success)
let msg = "Address updated!"
this.showFlash(msg, true)
)
.catch(err =>
console.log("errrrr")
let msg = "Not valid address. Please check address again."
this.showFlash(msg, true)
);
vue.js
I am losing the context of this on the "then" portion of my Promise. I marked the first debugger, which when I type in this
, shows the value as the Vue component. I continue on and when I hit the next debugger statement inside the then
portion of the Promise, the value of this
is undefined even when using the fat arrow syntax.
Parent component
<Modal
@emitshowflashmsg="handleShowCouponModal"
>
Child component (Modal.vue
)
methods:
showFlash: function(msg, bool)
let data = msg, bool
this.$emit('emitshowflash', data)
,
updateShippingAddress: function()
debugger
// `this` has a value here
axios.post('/api/act/address',
street_address: this.$refs.streetAddress.value ? this.$refs.streetAddress.value : "",
apartment: this.showSecondAddressLine ? this.$refs.apartment.value : "",
city: this.$refs.city.value ? this.$refs.city.value : "",
state: this.$refs.state.value ? this.$refs.state.value : "",
zip: this.$refs.zip.value ? this.$refs.zip.value : ""
)
.then((response) =>
debugger
// `this` is undefined here
if(response.data.success)
let msg = "Address updated!"
this.showFlash(msg, true)
)
.catch(err =>
console.log("errrrr")
let msg = "Not valid address. Please check address again."
this.showFlash(msg, true)
);
vue.js
vue.js
edited Mar 25 at 1:39
Phil
102k13152171
102k13152171
asked Mar 25 at 0:19
jjoanjjoan
687
687
Ignoring the debugger for a minute, are you getting any actual errors? Ifthis
was not your Vue component in thethen()
callback, I imagine you would get something like "this.showFlash is not a function". Is that what's happening?
– Phil
Mar 25 at 0:23
@Phil yea, that's how I noticed there was an issue.this.showFlash
is triggering the catch and loggingerrrrr
. When I removedthis.showFlash()
, the catch is not triggered
– jjoan
Mar 25 at 0:26
Are you absolutely certain you're using an arrow function inthen()
andcatch()
? Perhaps your browser is running an older version of your script from cache
– Phil
Mar 25 at 0:27
1
Just noticed your parent component is listening foremitshowflashmsg
but you are emittingemitshowflash
. Now, that wouldn't cause the issue you're seeing but it certainly won't do what you expect
– Phil
Mar 25 at 1:42
1
@Phil Aside of that,emitshowflashmsg
is callinghandleShowCouponModal
method (from modal's parent component), but only modal'supdateShippingAddress
method is shown. Real mess :)
– Styx
Mar 25 at 15:05
|
show 5 more comments
Ignoring the debugger for a minute, are you getting any actual errors? Ifthis
was not your Vue component in thethen()
callback, I imagine you would get something like "this.showFlash is not a function". Is that what's happening?
– Phil
Mar 25 at 0:23
@Phil yea, that's how I noticed there was an issue.this.showFlash
is triggering the catch and loggingerrrrr
. When I removedthis.showFlash()
, the catch is not triggered
– jjoan
Mar 25 at 0:26
Are you absolutely certain you're using an arrow function inthen()
andcatch()
? Perhaps your browser is running an older version of your script from cache
– Phil
Mar 25 at 0:27
1
Just noticed your parent component is listening foremitshowflashmsg
but you are emittingemitshowflash
. Now, that wouldn't cause the issue you're seeing but it certainly won't do what you expect
– Phil
Mar 25 at 1:42
1
@Phil Aside of that,emitshowflashmsg
is callinghandleShowCouponModal
method (from modal's parent component), but only modal'supdateShippingAddress
method is shown. Real mess :)
– Styx
Mar 25 at 15:05
Ignoring the debugger for a minute, are you getting any actual errors? If
this
was not your Vue component in the then()
callback, I imagine you would get something like "this.showFlash is not a function". Is that what's happening?– Phil
Mar 25 at 0:23
Ignoring the debugger for a minute, are you getting any actual errors? If
this
was not your Vue component in the then()
callback, I imagine you would get something like "this.showFlash is not a function". Is that what's happening?– Phil
Mar 25 at 0:23
@Phil yea, that's how I noticed there was an issue.
this.showFlash
is triggering the catch and logging errrrr
. When I removed this.showFlash()
, the catch is not triggered– jjoan
Mar 25 at 0:26
@Phil yea, that's how I noticed there was an issue.
this.showFlash
is triggering the catch and logging errrrr
. When I removed this.showFlash()
, the catch is not triggered– jjoan
Mar 25 at 0:26
Are you absolutely certain you're using an arrow function in
then()
and catch()
? Perhaps your browser is running an older version of your script from cache– Phil
Mar 25 at 0:27
Are you absolutely certain you're using an arrow function in
then()
and catch()
? Perhaps your browser is running an older version of your script from cache– Phil
Mar 25 at 0:27
1
1
Just noticed your parent component is listening for
emitshowflashmsg
but you are emitting emitshowflash
. Now, that wouldn't cause the issue you're seeing but it certainly won't do what you expect– Phil
Mar 25 at 1:42
Just noticed your parent component is listening for
emitshowflashmsg
but you are emitting emitshowflash
. Now, that wouldn't cause the issue you're seeing but it certainly won't do what you expect– Phil
Mar 25 at 1:42
1
1
@Phil Aside of that,
emitshowflashmsg
is calling handleShowCouponModal
method (from modal's parent component), but only modal's updateShippingAddress
method is shown. Real mess :)– Styx
Mar 25 at 15:05
@Phil Aside of that,
emitshowflashmsg
is calling handleShowCouponModal
method (from modal's parent component), but only modal's updateShippingAddress
method is shown. Real mess :)– Styx
Mar 25 at 15:05
|
show 5 more comments
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55329864%2fvue-losing-context-of-this-inside-function-promise%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55329864%2fvue-losing-context-of-this-inside-function-promise%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Ignoring the debugger for a minute, are you getting any actual errors? If
this
was not your Vue component in thethen()
callback, I imagine you would get something like "this.showFlash is not a function". Is that what's happening?– Phil
Mar 25 at 0:23
@Phil yea, that's how I noticed there was an issue.
this.showFlash
is triggering the catch and loggingerrrrr
. When I removedthis.showFlash()
, the catch is not triggered– jjoan
Mar 25 at 0:26
Are you absolutely certain you're using an arrow function in
then()
andcatch()
? Perhaps your browser is running an older version of your script from cache– Phil
Mar 25 at 0:27
1
Just noticed your parent component is listening for
emitshowflashmsg
but you are emittingemitshowflash
. Now, that wouldn't cause the issue you're seeing but it certainly won't do what you expect– Phil
Mar 25 at 1:42
1
@Phil Aside of that,
emitshowflashmsg
is callinghandleShowCouponModal
method (from modal's parent component), but only modal'supdateShippingAddress
method is shown. Real mess :)– Styx
Mar 25 at 15:05