错误:没有NavParams的提供程序

时间:2017-08-11 17:02:42

标签: angular typescript ionic2

当我导航到我使用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);
  }
}

提前谢谢你。

1 个答案:

答案 0 :(得分:-2)

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