Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 React.js 中开发,我正在使用React-Table。我需要在特定列中获取单元格值。
我已经引用了 table 组件来访问它的内部状态。
但我不知道在哪里可以找到列中的单元格值。
是否可以在列上获取单元格值?
创建列时,对于单元格部分,您可以指定一个函数,该函数将读取单元格的值
Cell: v => console.log(v.value)
列