使用antd开发时遇上的onChange event为空的问题

前端之家收集整理的这篇文章主要介绍了使用antd开发时遇上的onChange event为空的问题前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

背景:

在使用React进行前端页面的开发,使用antd的Input组件时,本想利用onChange事件的event.target.value获取正在修改的值,但是一直报错为空,下面是控制台的报错信息:

This synthetic event is reused for performance reasons. If you’re seeing this,you’re accessing the property target on a released/nullified synthetic event. This is set to null. If you must keep the original synthetic event around,use event.persist(). See https://fb.me/react-event-pooling for more information.

解决方法
在操作event之前,先写如下语句:

e.persist();

搞定~

原文链接:https://www.f2er.com/react/301581.html

猜你在找的React相关文章