我一直在试验 popmotion pure,因为动画必须使用“ref”,我正在使用它。
这里,为什么 ref(number) 的值为 null。
import React from 'react'
import {
styler,
tween,
merge,
action,
easing
} from "popmotion";
class Demo extends React.Component {
constructor(props) {
super(props)
this.count = React.createRef();
}
componentDidMount() {
const number = this.count.current.querySelector('#count');
const updateCounter = (v) => {
console.log(v)
return (number.innerHTML = v)
}
tween({
from: 0,
to: 300,
flip: Infinity,
duration: 4000
}).start(updateCounter);
}
render() {
return (
<div>
<p ref={this.count} id='count'></p>
<div id="ball"></div>
</div>
)
}
}
export default Demo
它返回错误为TypeError: Cannot set property 'innerHTML' of null
但是,如果我使用这个文档而不是 null,它工作正常
const number = document.querySelector('#count');
有人可以指导我完成。谢谢