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