闭包的使用要分成三个部分,闭包的声明,闭包的实现,闭包的调用
第一中写法
闭包的声名
callSurfaceId:(surfaceid: string) =>void = (surfaceid:string) => {}
闭包的实现
VideoDetail({ screenHeight: this.videoHeight, avPlayerUtil: this.avPlayerUtil, videoHeight: $videoHeight, callSurfaceId: ((surfaceid: string) => {this.videoViewData.push(surfaceid);}) })
闭包的调用
this.callSurfaceId(this.surfaceId);
第一种写法,实际上是给闭包添加了一个默认的实现
第二种写法
闭包的声名
//注意这里没有默认的实现,所以添加了一个可选类型符号“?”
callSurfaceId ?:(surfaceid: string) =>void ;
闭包的实现和第一个种方式一样
VideoDetail({ screenHeight: this.videoHeight, avPlayerUtil: this.avPlayerUtil, videoHeight: $videoHeight, callSurfaceId: ((surfaceid: string) => {this.videoViewData.push(surfaceid);}) })
闭包的调用
注意这里要添加一个"!"符号
this.callSurfaceId!(this.surfaceId);