onUpdate属性或事件

时间:2017-05-01 21:45:27

标签: reactjs jsx react-bootstrap-table

从此命令:

const createRegionsEditor = (onUpdate, props) => (<RegionsEditor onUpdate={ onUpdate } {...props}/>);

的onUpdate
    RegionsEditor onUpdate

引用RegionsEditor的事件或道具?

我在第93行的自定义单元格编辑

下找到了代码:http://allenfang.github.io/react-bootstrap-table/example.html#celledit

1 个答案:

答案 0 :(得分:0)

它的类型看起来像一个函数。

无论是什么类型,它都是属性。

这不是本地事件。因此,当<RegionsEditor />中发生某些事情时,它可能会被调用。

您需要查看您正在使用的软件包的文档,或者只查看源代码......