在Ionic 3中将API数据从一页传递到另一页

时间:2018-07-10 10:26:23

标签: ionic-framework ionic3

假设我有这样的东西:

const theFn = obj.abc;
theFn('foo')

如何在所有页面上传递通话数据?

1 个答案:

答案 0 :(得分:1)

您必须制作一个这样的字典对象

savePedoData() {
    let data = {
      steps: this.count
    };
    this.navCtrl.push(PAGE_NAME, data);
}

和第二页

steps = this.navParams.get("steps");
console.log(steps);

您可以在日志中找到数据