写了一个构造函数
构造函数里面写了个circle方法
写了个loading 通过setInterval 调用这个circle方法,但是因为this指向问题,于是就用call重新定义了一下this ,但是之后 setInterval就只执行一次了
相关问题
- Is there a limit to how many levels you can nest i
- How to toggle on Order in ReactJS
- void before promise syntax
- Keeping track of variable instances
- Can php detect if javascript is on or not?
_this.circle.bind(this)
setInterval(() => {
_this.circle()
})