箭头函数
来源:3-3 实现 TodoList 新增删除功能
二师兄e
2019-05-11
onClick={ this.handleBtnClick }
onClick={()=> this.handleDeleteItem(index)}
handleBtnClick = () => {
}
handleDeleteItem = index => {
}
老师您好。 2个onClick事件。 下面这个 带个 ()=> 是 什么意思。跟上面这个 不带的 有什么区别吗?
写回答
1回答
-
Dell
2019-05-11
上面的无法传递index,下面的才可以把index传递到函数里
022019-05-12
相似问题