古腾堡:向特定块字段添加 "onChange" 事件

Gutenberg: adding an "onChange" Event to specific block field

我有一个使用 LazyBlocks 创建的现有块。

当特定块中的相应字段更改时,我需要覆盖当前 WordPress post 的标题和 post 图片。 我在谷歌上搜索了很多,但没有得到任何线索。

示例:

感谢您的帮助!

Lazyblocks 提供不同的 js 过滤器。 如果特定块的值已更改,则会触发以下操作。

wp.hooks.addFilter( 'lzb.editor.control.updateValue', 'lazyblock/fmtest', function ( val, control, childIndex ) {
    console.log( val, control, childIndex );
    /*do your stuff*/
    return val;
} );