1 回答
饮歌长啸
TA贡献1951条经验 获得超3个赞
要绑定this
(敲黑板)!
箭头函数:
const updateTime = () => {}; setInterval(updateTime,1000);
别名:
const self = this; function updateTime(){ self.setState({...}) } setInterval(updateTime,1000);
添加回答
举报
0/150
提交
取消