// 字段描述
var field = [{
field: '服务器',
display: 'host',
visible: true,
type: 'checkbox'
}, {
field: '部门',
display: 'department',
visible: true,
type: 'input'
}]
// 原始list数据
var list = [{
id: 1,
host: '1.1 .1 .1',
department: '技术'
}]
将两个数组合并,并返回类似于以下形式的数组
[{
id: 1,
host: {
field: '服务器',
display: 'host',
value: '1.1 .1 .1',
visible: true,
type: 'checkbox'
},
department: {
field: '部门',
display: 'department',
value: '技术',
visible: true,
type: 'input'
}
}
]
饮歌长啸
慕桂英546537
aluckdog
相关分类