有时我会收到类似errors的错误。 它们为什么会出现?
答案 0 :(得分:0)
如果您尝试访问未定义值的属性,则会发生这种情况。例如:
var test; // test is now undefined, typeof(test) would return "undefined"
test.myPropertyName // => throws 'Uncaught TypeError: Cannot read property 'undefined' of undefined'
所以,听起来你正在尝试使用未经初始化的变量执行操作。