无法在连接后查看新表数据 - 离子 3 角度 4



我正在使用ionic的事件将数据从一个页面传递到另一个页面。在本例中,我将数组传递到另一个页面,假设有两个对象。我要添加到的数据称为dataOne,我正在使用生命周期函数,以便当用户进入页面时,将自动通过此函数测试他们是否有要连接到dataOne的事件。问题是,没有添加数据。我能够检索数据,但表没有任何变化,因为我仍然得到相同的结果。

TS

ionViewWillEnter(){
    this.events.subscribe('market', (dataTwo) => {
            return this.dataOne = this.dataOne.concat(dataTwo)
          })
}

什么是"市场"? dataOne 是数组?在我看来,

dataOne: any[]=[];
...
this.events.subscribe((dataTwo) =>{
 this.dataOne.push(dataTwo.market); // if market you want to catch data
}

相关内容

  • 没有找到相关文章

最新更新