获取 ant.design 表列中另一列的值?
Posted
技术标签:
【中文标题】获取 ant.design 表列中另一列的值?【英文标题】:Get value of another column in an ant.design Table's column? 【发布时间】:2017-12-09 00:51:54 【问题描述】:在我的 react 和基于 ant.design 的应用程序中,我有一个包含以下列的表格。
const tableColumns = [
title : 'Lorem',
dataIndex : 'lorem'
render: text => <a href='#'> text + ipsum </a>
,
title : 'Ipsum',
dataIndex : 'ipsum'
];
我想为ipsum
使用值,即第一列渲染函数内每一行的第二列。 ant.design 在此处获取第二列值的最佳推荐方法是什么?
【问题讨论】:
【参考方案1】:render 函数的第二个参数是当前记录:
render: (text, row) => <a> text + row.ipsum </a>
https://ant.design/components/table/#Column
【讨论】:
非常感谢以上是关于获取 ant.design 表列中另一列的值?的主要内容,如果未能解决你的问题,请参考以下文章
使用同一 Dataframe 中另一列的 int 作为索引获取列中的列表值
用 Pandas 将 DataFrame 中某些列和行的值替换为同一 DataFrame 中另一列的值