当我导航到使用NavParams的产品页时,出现错误。这是我的代码:

import { Component } from '@angular/core';
import { NavController, NavParams, AlertController, ModalController } from 'ionic-angular';

@Component({
  selector: 'page-product',
  templateUrl: 'product.html'
})
export class ProductPage {
  data: any;
  constructor( public navParams: NavParams ) {
    this.tabBarElement = document.querySelector('.tabbar.show-tabbar');
    this.data = this.navParams.get('item');
    console.log(this.data);
  }
}

提前谢谢你。

最佳答案

转到AppModule并将NavParams添加到providers数组。

07-26 00:20