start() {
this.ttimer(3000)
/////3秒后想让label 显示 6,报错
},
ttimer(time) {
setTimeout(function () {
a = 6
this.node.getComponent(cc.Label).string = a
}, time);
},
////// 错误:
assets\js\NewScript.js:45 Uncaught TypeError: Cannot read property ‘getComponent’ of undefined
at eval (eval at (quick_compile.js:238), :50:17)