萌新对ES6的‘=>’有点晕
想请问下,以下代码的this正常。
Page({ onLoad : function (options) { console.log( this ); }, }) |
为什么这个是undefined。
Page({ onLoad : options => { console.log(this) }, }) |
2 回复
想请问下,以下代码的this正常。
Page({ onLoad : function (options) { console.log( this ); }, }) |
为什么这个是undefined。
Page({ onLoad : options => { console.log(this) }, }) |