简体   繁体   中英

Javascript - Object that relies on other objects

var config = {
  xxx : 'foo'
}

var env = {
 foo : {

 },
 bar : {

}
}

How can I use an objects value to retrieve values from another object?

like:

env.config.xxx?
var object1 = { value : 'hello' }
var object2 = { o : object1 }

alert(object2.o.value);

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM