3

我不明白为什么我不能访问这样的值:

object = {
    test:{
        value: "Hello world"
    }
}

variable = "value";

//this gives me "Hello world"
console.log(object.test.value);

//this gives me undefined error
console.log(object.test.variable);

到目前为止,我可以理解它不能以这种方式完成,但我仍然需要为变量赋予一些值,然后使用该变量来访问对象值。

4

2 回答 2

14

这样做:

console.log(object.test[variable]);

用点来做就是使用文字属性名称。即,object.test.value等于object.test['value']

于 2012-06-26T18:48:10.647 回答
2

你需要做

object.test[variable]

可以使用.和访问对象[]

object.test.variable正在寻找不存在的文字属性“变量”。

于 2012-06-26T18:48:19.323 回答