我通过ModalController显示组件EventFeedbackComponent
。现在,我想订阅Subject
中的EventFeedbackComponent
。如何访问组件实例,以实现我的目标。
我目前的代码:
let modal = this.modalCtrl.create(EventFeedbackComponent);
modal.present();
// This is not working. Throws the error "ERROR TypeError: Cannot read property 'subscribe' of undefined"
modal._component.feedbackSubmit.subscribe(feedbackResponse => {
console.log(feedbackResponse);
});
文档在这方面没有帮助:https://ionicframework.com/docs/api/components/modal/ModalController/
我的用例:
Service
中有一个事件列表,我需要获得反馈。EventFeedbackComponent
有控制权来获取单个活动的反馈。feedbackSubmit
Subject
feedback
时,我会显示成功Toast并在服务中切换我的服务变量以显示下一个事件。答案 0 :(得分:19)
离子模态组件使我们有机会用一些参数关闭对话:
<强> modal.ts 强>
constructor(public viewCtrl: ViewController) {
this.prop = params.get('prop');
}
dismiss() {
this.viewCtrl.dismiss({ test: '1' });
}
在揭幕战中我们应该:
<强> opener.ts 强>
let modal = this.modalCtrl.create(TestComponent, { 'prop': 'prop1' });
modal.onDidDismiss(data => {
alert('Closed with data:' + JSON.stringify(data));
});
如果这还不够,那么
您可以使用ViewController::emit
方法将数据发送到开启者
<强> modal.ts 强>
constructor(public viewCtrl: ViewController) {}
sendFeedBack() {
this.viewCtrl.emit({ someData: '2' });
}
<强> opener.ts 强>
let modal = this.modalCtrl.create(TestComponent, { 'prop': 'prop1' });
modal.onDidDismiss(data => {
alert('Closed with data:' + JSON.stringify(data));
});
modal.present().then(result => {
modal.overlay['subscribe']((z) => {
alert(JSON.stringify(z));
})
});
由于我们可以将任何参数传递给模态,然后让我们传递回调函数:
<强> opener.ts 强>
let modal = this.modalCtrl.create(TestComponent, {
'prop': 'prop1',
onFeedBack: (data) => {
alert('Input callback' + JSON.stringify(data));
}
});
<强> modal.ts 强>
onFeedBack: Function;
constructor(params: NavParams) {
this.onFeedBack = params.get('onFeedBack');
}
sentThroughInputCallback() {
this.onFeedBack({ s: '2' });
}
如果您仍想获得组件实例,那么:
只有在创建组件实例后才能获取它:
<强> opener.ts 强>
let modal = this.modalCtrl.create(TestComponent, { 'prop': 'prop1' });
modal.present().then(result => {
const testComp = modal.overlay['instance'] as TestComponent;
testComp.feedbackSubmit.subscribe(() => {
alert(1);
})
});
上查看