摘要: 方法1、在constructor中使用bind绑定 this.handleClick = this.handleClick.bind(this) 方法2、公共类字段使用回调 handleClick = () =>{ } 方法3、在调用函数的地方使用箭头函数 阅读全文
posted @ 2018-08-16 10:42 去有风的地方 阅读(117) 评论(0) 推荐(0) 编辑