gpt4 book ai didi

javascript - 如何重命名某些 JSON 对象属性以在 HTML 表中显示它

转载 作者:行者123 更新时间:2023-11-28 15:06:41 24 4
gpt4 key购买 nike

如果我有一个从数据库中获取的对象列表

[{ "id":0 ,"name":"John", "lastname":"Shell" },{ "id":1,...];

结果是(动态插件):

 data : JSON.stringify(data)
success: function(data,status){
$('#table').dynatable({
dataset:{
records:data
}
})
}

但我不想在 html 中生成表格时在“th”上显示 id,而是想将其重命名为 securityNumber 而不更改实际的 JSON

      <table id="tabela">
<thead>
<th>id</th>
<th>name<th>
<th>last_name<th>
</thead>
</table>

我不能只替换 id,因为插件通过 JSON 对象的属性识别列名

我尝试过不同的插件,我正在使用 dynatable(已在文档中搜索过),但我愿意接受另一种解决方案。

我该如何继续?

最佳答案

您可以在 textTransform 上添加自定义格式设置方法,并在其中编写列名称的映射。查看文档 here .

这种方法的一个例子可能是

dynatable.utility.textTransform.customColumnName = function(text) {
if (text) === 'id' return 'security_number'
return text
}

或者,您可以在不更改源 JSON 的情况下使用 Array.map 转换数组,例如:

...
records: data.map((item) => {
return {
security_number: item.id,
name: item.name,
last_name: item.last_name
}
}),
...

关于javascript - 如何重命名某些 JSON 对象属性以在 HTML 表中显示它,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49265974/

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