2016-02-17 186 views

回答

0

如果您嘗試訪問未定義值的屬性,則會發生這種情況。例如:

var test; // test is now undefined, typeof(test) would return "undefined" 
test.myPropertyName // => throws 'Uncaught TypeError: Cannot read property 'undefined' of undefined' 

所以,聽起來像你試圖使用未經初始化的變量執行操作。

+0

我在應用程序中收到此錯誤,並在從CollectionView移動時在ost.io中收到此錯誤。看來這是Chaplin.js的問題。 – ameba

相關問題