作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
有没有办法在不关闭的情况下捕获从 Modal 组件(使用 ModalController 创建)发出的本地事件,而不必使用全局 Events
还是服务?
Angular 的方法是使用 listen
来自 Renderer ,但我不知道在这种情况下如何获得对组件实例的正确引用。
MyComponent.ts
...
export class MyComponent {
@Output() myAwesomeEvent = new EventEmitter<string>();
fireEvent() {
this.myAwesomeEvent.emit('payload');
}
}
...
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/
我正在查看 Angular ui modal with controller in separate js file 中概述的答案和问题我希望达到相同的结果,即将模态 Controller 放在它自己
我正在尝试测试一种启动模态的方法,以前有人这样做过吗,有人可以指出我正确的方向吗?我编写了以下测试套件。 describe('bdb modal provider test suite', () =>
有没有办法在不关闭的情况下捕获从 Modal 组件(使用 ModalController 创建)发出的本地事件,而不必使用全局 Events还是服务? Angular 的方法是使用 listen来自
Controller 测试套件一(主 Controller ): describe("RTL cache viewing utility main controller test suite", fu
我是一名优秀的程序员,十分优秀!