0
嵌套功能不起作用ReactJs。但它在正常工作Javascript。ReactJs嵌套功能不起作用
它表明這個錯誤
Uncaught TypeError: Cannot set property 'getWlc' of undefined
我怎麼能寫裏面ReactJs功能
function ldViewLayer() {
this.getWlc = function() {
alert('Try Alerts on Babel');
}
this.getWlc();
}
ldViewLayer();
'this'在非結合的非箭頭的功能,除非你調用未定義的嚴格模式用'new'功能。 – SimpleJ