错误:没有导航参数的提供程序



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

相关内容

  • 没有找到相关文章

最新更新