DataGrid MUI 中是否有可用的选项来导出复杂对象上带有 renderCell 的列?

Is there any option available in DataGrid MUI to export columns with renderCell on a complex object?

我正在导出 DataGrid @mui/x-data-grid table 使用 CustomToolbar

我有如下列之一

        {
            field: 'industry_type',
            headerName: 'Industry',
            renderCell: (params) => {
                const industry = params.row.industry_type;
                return (
                    <>
                        <p>{`${industry.code}- ${industry.value}`} </p>
                    </>
                );
            }
        }

从导出选项下载的 csv 文件给出的值为 [object Object]

如何获取 csv 下载文件中的实际值?我需要帮助来解决这个问题。谢谢

valueGetter 是否适用于导出?

        {
            field: 'industry_type',
            headerName: 'Industry',
            renderCell: (params) => {
                const industry = params.row.industry_type;
                return (
                    <>
                        <p>{`${industry.code}- ${industry.value}`} </p>
                    </>
                );
            },
            valueGetter: (params) => `${params.row.industry_type.code}- ${params.row.industry_type.value}`,
        }