gpt4 book ai didi

Ionic2:如何从 Modal 组件(从 ModalController 创建)中捕获事件?

转载 作者:行者123 更新时间:2023-12-01 13:38:29 24 4
gpt4 key购买 nike

有没有办法在不关闭的情况下捕获从 Modal 组件(使用 ModalController 创建)发出的本地事件,而不必使用全局 Events还是服务?

Angular 的方法是使用 listen来自 Renderer ,但我不知道在这种情况下如何获得对组件实例的正确引用。

MyComponent.ts

...
export class MyComponent {
@Output() myAwesomeEvent = new EventEmitter<string>();

fireEvent() {
this.myAwesomeEvent.emit('payload');
}
}

家长.ts
...
const modal = this.modalCtrl.create(MyComponent);
// how do I catch 'myAwesomeEvent' emitted from within MyComponent?
...

最佳答案

IONIC 版本 4 这可能是一种解决方法? (在我的应用程序中似乎工作正常)

let eventEmitter= new EventEmitter();
eventEmitter.subscribe(res=>{
console.log("emitterResult", res)
});

const modal = await this.modalCtrl.create({
component: MyComponent,
componentProps: {
clickFavorite: eventEmitter
}
});

我的组件:
export class MyComponent{    
@Output() clickFavorite= new EventEmitter<any>();

favorite(evt){
this.clickFavorite.emit("OK");}
}
}

关于Ionic2:如何从 Modal 组件(从 ModalController 创建)中捕获事件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42259421/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com