当我导航到使用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
数组。