gpt4 book ai didi

javascript - 按名称获取嵌套键

转载 作者:行者123 更新时间:2023-11-30 13:56:22 27 4
gpt4 key购买 nike

我有这样的结构:

const config = { modules: [ { debug: true }, { test: false } ] }

我想要一个能给我模块状态的函数。例如:

getStatus("debug")

使用 config["modules"] 我得到了数组,但是如何返回嵌套对象中特定键的值?

config["modules"][0] 会返回 debug: true并且 config["modules"][1] 将返回 test: false

如何搜索编号索引的键?

最佳答案

括号符号有助于使用声明的变量引用对象键。

假设:

const config = { modules: [ { debug: true }, { test: false } ] }

这应该适用于您的用例:

var getStatus = module => config.modules.filter(item => item.hasOwnProperty(module))[0][module];  
getStatus('debug'); // true
getStatus('test'); // false

关于javascript - 按名称获取嵌套键,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57212565/

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