Chaplin.js - 未捕获的TypeError:无法读取未定义的属性'undefined'

时间:2016-02-17 10:48:03

标签: javascript chaplinjs

有时我会收到类似errors的错误。 它们为什么会出现?

1 个答案:

答案 0 :(得分:0)

如果您尝试访问未定义值的属性,则会发生这种情况。例如:

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

所以,听起来你正在尝试使用未经初始化的变量执行操作。