当前位置: 首页 > 知识库问答 >
问题:

前端 - antdProComponents proTable自带的编辑回显数据不正常,该怎么正常回显呢?

高增
2023-07-26

我有这样一个数组,里面每一项都是对象{id:xxx,attributes{xxx}},如果dataIndex是最外层的id,点编辑后可以正常显示,如果是attributs里面的某一项,就会变成[object Object],在proComponents官方demo里面也是这样的,除了自己写一个以外,有没有什么办法让它正常回显呢?

共有1个答案

长孙承嗣
2023-07-26

table 组件的 dataIndex 是允许传入数组的,所以如果说你需求的是 attributs.name 可以书写为:

{  title: "名称",  key: "name",  dataIndex: ["attributs", "name"]}

当然也可以写 rendText 来处理。

 类似资料: