interface HostListener {
eventName : string // html dom 事件
args : string[] // 传入参数,可以是event对象等
}
api介绍:
https://angular.cn/docs/ts/latest/api/core/index/HostListener-interface.html
适用于属性型指令,将dom事件绑定到组件,功能类似于addEventListener()方法
hostListener(‘wheel’,[‘$event’]) onMouseWheel(event:any) {
}
event是传入的event对象,可以根据自己的需求实现
可以在angular2官方文档看例子
https://angular.cn/docs/ts/latest/guide/attribute-directives.html