JSON.stringify()。 newString = ''+JSON.stringify(values, ['displayName'], 4)+''; 返回: 我只想显-6ren">
gpt4 book ai didi

javascript - JSON.stringify ("only values, not hash/key nor markup")

转载 作者:行者123 更新时间:2023-12-02 15:22:58 24 4
gpt4 key购买 nike

我有一个 obj -> JSON.stringify()。

newString = '<pre>'+JSON.stringify(values, ['displayName'], 4)+'</pre>';

返回: enter image description here

我只想显示键“displayName”的值,而不显示任何数组/obj markyp(“{},[]等”) ---> Alexander Thorarinsson

“values”数组中的 obj 深度示例:

enter image description here

记录给定表格渲染的每个单元格值: enter image description here

最佳答案

你不需要stirngify,但你确实需要小心地解开数组

newString = '<pre>'+values[0].displayName[0]+'</pre>';

关于javascript - JSON.stringify ("only values, not hash/key nor markup"),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33896931/

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