良药_
2019-02-19 21:49
请问setInterval()方法里的箭头函数可以怎么改写成普通函数?是否可以改写,谢谢!
this.timer = setInterval(function(){ this.setState({ date:new Date() }) }.bind(this),1000)
这样改写就可以了
()=>{}
function(){}
()=>就是function
handleClose:function(done) {
this.$confirm('确认关闭?')
.then(_ => {
done();
location.reload();
})
.catch(_ => {
//location.reload();
});
},
如何转化为普通函数
基于实例的 React16 傻瓜课程
22372 学习 · 106 问题
相似问题