我有兩個組件類A和B.從另一個組件類訪問組件類變量
由於注入許多服務,A類有一個很大的構造函數。和在B類等
IonicPage()
@Component({
selector: 'page-chat',
templateUrl: 'chat.html',
providers: [ChatService]
})
export class ChatPage implements OnInit, OnDestroy{
msg:any[];
陣列這就好比是
@Component({
selector: 'page-home',
templateUrl: 'home.html',
providers: [ChatService]
})
export class HomePage {
chatRoot = ChatPage;
settingsRoot = SettingsPage;
constructor(private chatService: ChatService) {
}
onReset(){
//this.chatRoot.msg = [];
}
}
另一個分量i希望重置MSG爲[]。在當前狀態,我得到complan,我的味精是未知的,
你不會在其他組件的組件分配給變量,你可以在homePage中執行ViewChild和實例,或爲msg創建模型 – alehn96