gpt4 book ai didi

javascript - 如何连接 Material 表中的两个或多个字段 react

转载 作者:行者123 更新时间:2023-12-04 09:14:22 26 4
gpt4 key购买 nike

我试图在我的 Material 表中创建一个“名称”列,其中包含来 self 的数组的串联 firstname, lastname,但它每个字段只接受一个数据。

有什么建议或帮助使之成为可能吗?

const client = {
firstname: "Tracy",
lastname: "Santos",
address: {
address1: "Manila",
address2: "Philippines",
}
}

const columns = [
{ title: 'Name', field: 'client.firstname' + ' ' + 'client.lastname' },
{ title: 'Address', field: 'client.address.address1' + ' ' + 'client.address.address2' },
]
<MaterialTable
column={ columns }
data={ client }
/>

最佳答案

另一种不需要修改传递给表的数据的方法是为该字段使用自定义呈现函数。

{
render: (client) => {
return `${client.firstName} ${client.lastName}`;
},
title: 'Client',
},

关于javascript - 如何连接 Material 表中的两个或多个字段 react ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63281784/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com