我使用的對象結構用於我的JS文件,並希望能夠分配的屬性之一(這是一個數組)到其它性質中的一種:從另一個屬性到達的對象屬性
AvGen = {
theBody: {
bodies: [
fooObj,
foo2Obj, // <--- assign this property...
foo3Obj
],
bodyColor: '#DB6EDB',
currBodyNr: 1,
currBodyObj: AvGen.theBody.bodies[1] // <--- ...to this property
// ... rest of the code
然而,試圖做到這一點時,我得到了以下錯誤消息:
Uncaught ReferenceError: AvGen is not defined
如果我刪除「AvGen」它說,「汽車美容」沒有替代定義。我怎樣才能做到這一點?
x = foo2Obj,則currBodyObj:x,... – dandavis