我想访问onXouseOver事件的screenX。
这是当前的代码:
<h1 ref={textInput => { this.state.textInput = textInput; }}
onMouseMove={this.increaseValue}>Some text here</h1>
增加值定义为sp:
increaseValue = (e) => {
console.log(e.screenX,);
}
但是我收到此错误并且不确定它的含义:
由于性能原因,重复使用此合成事件。如果您看到此消息,则您在已发布/无效的合成事件上访问属性screenX
。这被设置为null。如果必须保留原始合成事件,请使用event.persist()。有关详细信息,请参阅https://reactjs.org/docs/events.html#event-pooling。