获取对象中的非对象可以直接this.store.data.latitude,但是获取this.store.data.student是空,怎么取这个值
this.data.store吧
let x = this.data.store.student || null 或者 let x = this.data.store.student ? this.data.store.student : null
确定不是异步?