我在推送新页面后出现上述错误我不明白为什么会出现此错误并且我已经在我们的文件中正确导入了页面我在页面推送后出现此错误,告诉我任何人如何修复此错误?`
import { Component,ViewChild } from '@angular/core';
import { SellerAuthData } from '../../../providers/auth-data/auth-data-seller';
import { ShareProductWithUsers } from '../share-product-with-users/share-product-with-users';
import { NavController, NavParams,Navbar} from 'ionic-angular';
@Component({
selector : 'page-album-share-with-user',
templateUrl : 'album-share-with-user.html',
providers : [SellerAuthData]
})
export class AlbumShareWithUser {
constructor(
public navCtrl : NavController,
public sellerAuthData : SellerAuthData)
}
/*
@Copyright Notice:
@(#)
@Type: TS
@For: main-page-home.html.
@Description : shareAlbumWithMoreUser function for share more album with user
*/
shareAlbumWithMoreUser() {
//push the page and pass the data in another page
this.navCtrl.push(ShareProductWithUsers, {
selectdCategoryObject : this.selectedCategoryObject,
selectedAlbumObject : this.selectedAlbumDetail
});
}
}

<button ion-button color="teal" (click)="shareAlbumWithMoreUser()" block small>
SHARE WITH MORE
</button>
&#13;
`