假设我在Ionic项目中有多级对象:
getData() {
this.http.get(this.url)
.map(res => res.json())
.subscribe(data => {
this.data = data;
console.log(data);
});
};
然后我得到多个对象
[Objects,Objects,Objects,Objects,Objects,...]
如下所示......
0:Objects
0: 'Something'
1: 'Else'
...
1:Objects
0: 'Name'
1: 'What?'
...
2:Objects
0: 'This'
1: 'That'
...
我在Ionic论坛和其他网站上搜索有关设置全局变量的信息。
基本上,我需要从各个页面访问这个变量,我想而不是发送某些数据作为参数,我会在必要时访问它们。
我将如何实现这一目标?