本文介绍了获取 ant.design 表列中另一列的值?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在我的 react 和基于 ant.design 的应用中,我有一个包含以下列的表格.
In my react and ant.design based app, I've a table with the following columns.
const tableColumns = [{
title : 'Lorem',
dataIndex : 'lorem'
render: text => <a href='#'> {text + ipsum} </a>
}, {
title : 'Ipsum',
dataIndex : 'ipsum'
}];
我想使用 ipsum
的值,即第一列渲染函数中每一行的第二列.ant.design 中获取第二列值的最佳推荐方法是什么?
I want to use value for ipsum
i.e. the second column for each row inside render function of the first column. What's the best recommended way in ant.design to fetch second column's value here?
推荐答案
render 函数的第二个参数是当前记录:
The second argument to the render function is the current record:
render: (text, row) => <a> {text + row.ipsum} </a>
https://ant.design/components/table/#Column
这篇关于获取 ant.design 表列中另一列的值?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!