将给定列表的每个元素对象数据格式到单独的一行:const columns = [ { title: 'ID', dataIndex: 'mr_id', key: 'mr_id', }, { title: '指纹ID', dataIndex: 'mr_gene_id', key: 'mr_gene_id', }, { title: '样品条码号', dataIndex: 'mr_sample', key: 'mr_sample', }, { title: 'DNA条码号', dataIndex: 'mr_dna', key: 'mr_dna', }, { title: '引物名称', dataIndex: 'mr_primer', key: 'mr_primer', }, { title: '荧光编号', dataIndex: 'mr_dye', key: 'mr_dye', }, { title: '分型类型', dataIndex: 'mr_type', key: 'mr_type', }, { title: '分型', dataIndex: 'mr_genotype', key: 'mr_genotype', }, { title: '种属', dataIndex: 'mr_species', key: 'mr_species', }, { title: '电泳板条码号', dataIndex: 'mr_plate', key: 'mr_plate', }, { title: '孔位号', dataIndex: 'mr_well', key: 'mr_well', }, { title: '状态', dataIndex: 'mr_status', key: 'mr_status', }, { title: '所属人', dataIndex: 'mr_manager', key: 'mr_manager', }, { title: '创建日期', dataIndex: 'mr_create_date', key: 'mr_create_date', }, { title: '更新日期', dataIndex: 'mr_update_date', key: 'mr_update_date', }, { title: '图谱的OCR信息', dataIndex: 'mr_ocr', key: 'mr_ocr', }, { title: '图谱路径', dataIndex: 'mr_file', key: 'mr_file', }, { title: '备注', dataIndex: 'mr_comments', key: 'mr_comments', }, ];
时间: 2023-12-08 19:04:18 浏览: 155
您可以使用map方法将给定列表的每个元素对象格式化为单独的一行,示例代码如下:
```
const columns = [
{ title: 'ID', dataIndex: 'mr_id', key: 'mr_id' },
{ title: '指纹ID', dataIndex: 'mr_gene_id', key: 'mr_gene_id' },
{ title: '样品条码号', dataIndex: 'mr_sample', key: 'mr_sample' },
{ title: 'DNA条码号', dataIndex: 'mr_dna', key: 'mr_dna' },
{ title: '引物名称', dataIndex: 'mr_primer', key: 'mr_primer' },
{ title: '荧光编号', dataIndex: 'mr_dye', key: 'mr_dye' },
{ title: '分型类型', dataIndex: 'mr_type', key: 'mr_type' },
{ title: '分型', dataIndex: 'mr_genotype', key: 'mr_genotype' },
{ title: '种属', dataIndex: 'mr_species', key: 'mr_species' },
{ title: '电泳板条码号', dataIndex: 'mr_plate', key: 'mr_plate' },
{ title: '孔位号', dataIndex: 'mr_well', key: 'mr_well' },
{ title: '状态', dataIndex: 'mr_status', key: 'mr_status' },
{ title: '所属人', dataIndex: 'mr_manager', key: 'mr_manager' },
{ title: '创建日期', dataIndex: 'mr_create_date', key: 'mr_create_date' },
{ title: '更新日期', dataIndex: 'mr_update_date', key: 'mr_update_date' },
{ title: '图谱的OCR信息', dataIndex: 'mr_ocr', key: 'mr_ocr' },
{ title: '图谱路径', dataIndex: 'mr_file', key: 'mr_file' },
{ title: '备注', dataIndex: 'mr_comments', key: 'mr_comments' },
];
const formattedColumns = columns.map((column) => {
return {
title: column.title,
dataIndex: column.dataIndex,
key: column.key,
};
});
console.log(formattedColumns);
```
这样,您就可以将给定列表的每个元素对象数据格式到单独的一行了。
阅读全文