从此命令:
const createRegionsEditor = (onUpdate, props) => (<RegionsEditor onUpdate={ onUpdate } {...props}/>);
是
的onUpdate RegionsEditor onUpdate
引用RegionsEditor的事件或道具?
我在第93行的自定义单元格编辑
下找到了代码:http://allenfang.github.io/react-bootstrap-table/example.html#celledit答案 0 :(得分:0)
它的类型看起来像一个函数。
无论是什么类型,它都是属性。
这不是本地事件。因此,当<RegionsEditor />
中发生某些事情时,它可能会被调用。
您需要查看您正在使用的软件包的文档,或者只查看源代码......