爲什麼它不起作用?無法在JSON中讀取父級的知識產權
我收到此錯誤信息:
TypeError: Cannot read property 'width' of undefined
var option = jQuery.extend({
parent: this,
width: 280,
height: 280,
circle: {
x: (option.width/2) + 5, // <= HERE!
y: (option.height/2) + 22, // <= AND ALSO HERE!
radius: 70,
speed: 5,
rotation: 0,
angleStart: 270,
angleEnd: 90,
hue: 220,
thickness: 15,
blur: 20
}
}, options);
我怎麼能看 「父母」 的財產?
我應該使用另一個前綴嗎?
因爲在對象完全創建之前無法讀取對象的屬性。 – Blazemonger