gpt4 book ai didi

带有子字段的 Extjs 模型字段

转载 作者:行者123 更新时间:2023-12-04 16:40:31 24 4
gpt4 key购买 nike

有人知道如何在 ExtJS 中为任何字段的子字段建模吗?例如

扩展数据模型:

fields:[
{name: 'id', type: 'int'},
{name: 'title', type: 'string'},
{name: 'description', type: 'string'},
{name: 'priority', type: 'auto', fields:[
{name: 'code', type: 'string'}
]},
{name: 'createdBy', type: 'auto'},
]

然后在我的网格面板中

扩展网格面板
columns:[
{header:'Title', dataIndex:'title', flex:1},
{header:'Priority', dataIndex:'code'}
],

知道如何访问“优先级”下的数据索引“代码”吗?提前致谢!

最佳答案

感谢@sha - 这是我需要的答案:)

模型

fields:[

{name: 'id', type: 'int'},
{name: 'title', type: 'string'},
{name: 'description', type: 'string'},
{name: 'priority', type: 'auto'},
{name: 'code', type: 'string', mapping:'priority.code'},
{name: 'createdBy', type: 'auto'},

]

格栅板
columns:[

{header:'Title', dataIndex:'title', flex:1},
{header:'Description', dataIndex:'description'},
{header:'Priority', dataIndex:'code'}

],

关于带有子字段的 Extjs 模型字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10500367/

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