gpt4 book ai didi

Javascript - 显示循环中第三个键的对象值

转载 作者:行者123 更新时间:2023-11-28 12:57:18 25 4
gpt4 key购买 nike

我有一个像这样的对象:

{
id: 50
code: 112
applicant: "individual",
application_id: 53,
appref: "ZAK00053",
date: "2019-01-11",
}

为了访问数据,我使用for..in循环

for(let keys in data){
console.log(data[keys])
}

在循环中,我如何显示从键 applicant 开始及以后的值?

值只能是individual, 53, ZAK00053, 2019-01-11

我必须将对象转换为数组吗?

最佳答案

为了接近您真正想要实现的目标,我会忽略两个属性 idcode 而不是尝试依赖顺序。

for(let key in data){
if (key == "code" || key == "id")
continue;
console.log(data[key]);
// ... do other stuff here, if needed
}

这样,您就根本不需要依赖属性的顺序。

for(let key in data){
if (key != "code" && key != "id"){
console.log(data[key]);
// ... do other stuff here, if needed
}
}

如果您想避免 continue 语句,这也能达到目的。

关于Javascript - 显示循环中第三个键的对象值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54159070/

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