react+antd中的onchange在监听值的变化时报错解决办法

在项目中监听change值变化的时候报错This synthetic event is reused for performance reasons. If you're seeing this, you're accessing the propertytargeton a released/nullified synthetic event

    <TextArea 
           className="markdown-content" 
           rows={
   35}  
           placeholder="文章内容"
           onChange={
   changeContent}
           onPressEnter={
   

你可能感兴趣的:(笔记,react)