In Vue.js I fetch some data of a json-file like this:
export default {
data () {
return {
data: []
}
},
created () {
this.fetchData();
},
methods: {
fetchData () {
$.getJSON('data/api.json', function(el) {
this.data = el;
}.bind(this)),
}
}
}
The fetched data has the following structure:
{
time: '17:00',
pick: {
box: {
single: 1,
multi: 2
}
}
}
When I try to access to {{ data.pick.box }} or {{ data.pick.box.single }}
in my component, I always get this error message:
vue.js?3de6:2963 Uncaught TypeError: Cannot read property 'box' of undefined
at Proxy.render (eval at <anonymous> (app.js:126), <anonymous>:4:46)
at VueComponent.Vue._render (eval at <anonymous> (app.js:139), <anonymous>:2954:22)
at VueComponent.eval (eval at <anonymous> (app.js:139), <anonymous>:2191:21)
at Watcher.get (eval at <anonymous> (app.js:139), <anonymous>:1656:27)
at new Watcher (eval at <anonymous> (app.js:139), <anonymous>:1648:12)
at VueComponent.Vue._mount (eval at <anonymous> (app.js:139), <anonymous>:2190:19)
at VueComponent.Vue$3.$mount (eval at <anonymous> (app.js:139), <anonymous>:5978:15)
at VueComponent.Vue$3.$mount (eval at <anonymous> (app.js:139), <anonymous>:8305:16)
at init (eval at <anonymous> (app.js:139), <anonymous>:2502:11)
at createComponent (eval at <anonymous> (app.js:139), <anonymous>:4052:9)
Is there any restriction for accessing deep nested objects? When I call {{ data }}
, for example, I get the whole data structure displayed as a string correctly.
As mentioned by Nora, here is the fiddle: jsfiddle
In Vue.js I fetch some data of a json-file like this:
export default {
data () {
return {
data: []
}
},
created () {
this.fetchData();
},
methods: {
fetchData () {
$.getJSON('data/api.json', function(el) {
this.data = el;
}.bind(this)),
}
}
}
The fetched data has the following structure:
{
time: '17:00',
pick: {
box: {
single: 1,
multi: 2
}
}
}
When I try to access to {{ data.pick.box }} or {{ data.pick.box.single }}
in my component, I always get this error message:
vue.js?3de6:2963 Uncaught TypeError: Cannot read property 'box' of undefined
at Proxy.render (eval at <anonymous> (app.js:126), <anonymous>:4:46)
at VueComponent.Vue._render (eval at <anonymous> (app.js:139), <anonymous>:2954:22)
at VueComponent.eval (eval at <anonymous> (app.js:139), <anonymous>:2191:21)
at Watcher.get (eval at <anonymous> (app.js:139), <anonymous>:1656:27)
at new Watcher (eval at <anonymous> (app.js:139), <anonymous>:1648:12)
at VueComponent.Vue._mount (eval at <anonymous> (app.js:139), <anonymous>:2190:19)
at VueComponent.Vue$3.$mount (eval at <anonymous> (app.js:139), <anonymous>:5978:15)
at VueComponent.Vue$3.$mount (eval at <anonymous> (app.js:139), <anonymous>:8305:16)
at init (eval at <anonymous> (app.js:139), <anonymous>:2502:11)
at createComponent (eval at <anonymous> (app.js:139), <anonymous>:4052:9)
Is there any restriction for accessing deep nested objects? When I call {{ data }}
, for example, I get the whole data structure displayed as a string correctly.
As mentioned by Nora, here is the fiddle: jsfiddle
Share Improve this question edited Jan 2, 2017 at 10:05 Sebastian Rush asked Jan 2, 2017 at 9:41 Sebastian RushSebastian Rush 5386 silver badges25 bronze badges 3 |3 Answers
Reset to default 10You can try waiting for data to finish loading to display it in your template:
export default {
data () {
return {
loading: false,
data: []
}
},
created () {
this.fetchData();
},
methods: {
fetchData () {
this.loading = true;
$.getJSON('data/api.json', function(el) {
this.data = el;
this.loading = false;
}.bind(this)),
}
}
}
In template:
<template>
<div v-if="!loading">
{{ data.pick.box }}
</div>
</template>
You are getting this error, as the data
is not populated while it is being loaded, and you get error in that while. You can use v-if in your template till the data is populated in the view. So the element will not be rendered till the data is loading and once the data is loaded it will show the data.
It can be like following:
<div v-if="data.pick">
{{data.pick.box}}
</div>
My solution was to create an empty object with empty properties.
data () {
return {
loading: false,
data: {pick:{},}
}
},
data
is[]
, and does not have any.pick.box
property. – sobolevn Commented Jan 2, 2017 at 9:53