I have a VueJS instance with some data :
var vm = new Vue({
el: \'#root\',
data: {
id: \'\',
name: {
firstname: \"\",
not same scope for this.name
create_casenr: function(event) {
// update the full name of user
$.ajax({
url: 'http://elk.example.com:9200/users/user/' + this.id
})
.done(function(data) {
console.log(data);
this.name = data._source;
this.name.valueset = true;
console.log(this.name);
}.bind(this))
add a bind(this)
Another thing that plays a role here is how Vue.js updates the DOM. For details read this section in the documentation: Async Update Queue
In short use "nexTick" callback to process your code after Vue.js is done updating the DOM.
methods: {
someMethod() {
var self = this;
$.ajax({
url: 'http://...',
}).done(function (data) {
self.a = data.a;
self.b = data.b;
self.$nextTick(function () {
// a and b are now updated
}
});
}
}
You have a scope issue of this.name
in your AJAX success handler.
The this.name
inside is not the same as this.name
in your Vue component. So your name is not getting set in the Vue component.
You may use arrow functions to get around this issue:
$.ajax({
url: 'http://elk.example.com:9200/users/user/' + this.id
}).done(data => {
this.name = data._source; // 'this' points to outside scope
this.name.valueset = true;
});
Similar answer: https://stackoverflow.com/a/40200989/654825
More info on Arrow functions: https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Functions/Arrow_functions