Closed jinmingpang closed 2 months ago
修复 #10939 广播事件无效。
6.8 版本,在 SchemaRenderer 中,改动了调用 bindEvent 时机。
SchemaRenderer
bindEvent
在 每次调用渲染器组件的 props.dispatchEvent 实际调用的是 SchemaRenderer.dispatchEvent 方法。第二个参数默认传的 this.cRef。因此在,"bindEvent" 的时候,也要默认传入 cRef
props.dispatchEvent
SchemaRenderer.dispatchEvent
this.cRef
cRef
改了下 bindEvent 传入的参数为 cRef,从而支持 广播事件。
👍 Thanks for this! 🏷 I have applied any labels matching special text in your issue.
Please review the labels and make any necessary changes.
thx
What
修复 #10939 广播事件无效。
Why
6.8 版本,在
SchemaRenderer
中,改动了调用bindEvent
时机。在 每次调用渲染器组件的
props.dispatchEvent
实际调用的是SchemaRenderer.dispatchEvent
方法。第二个参数默认传的this.cRef
。因此在,"bindEvent" 的时候,也要默认传入cRef
How
改了下
bindEvent
传入的参数为cRef
,从而支持 广播事件。