該代碼可與WHITESPACE_ONLY選項一起使用。但在ADVANCED模式下,點符號不起作用。但括號表示仍然有效。無法使用點符號獲得值
這裏是JSON對象:
{
'title' : 'The title',
'type' : 'SIM',
'description' : 'Build your own description.',
'iconclass' : goog.getCssName('img-icons-bs')
}
下面是代碼:
console.log('this.obj_ = ' + JSON.stringify(this.obj_));
console.log('this.obj_.iconclass = ' + this.obj_.iconclass);
console.log('this.obj_[iconclass] = ' + this.obj_['iconclass']);
輸出:
> this.obj_ = {"title":"The title","type":"SIM","description":"Build
> your own description.","iconclass":"img-icons-r"}
> this.obj_.iconclass = undefined
> this.obj_[iconclass] = img-icons-r
問題出在哪裏?
如果你再試一次,你還能得到嗎?你有沒有檢查過錯別字,甚至是像'.iconClass'這樣的情況變化? – SmokeyPHP
@SmokeyPHP,是的,我檢查過了。 – Vadim