删除 React 组件 contentEditable 警告

Remove React Component contentEditable Warning

提问人:Prerak Mathur 提问时间:9/2/2022 最后编辑:Prerak Mathur 更新时间:9/2/2022 访问量:172

问:

我创建了一个 react 组件,它是弹出悬停中模型中的表单。但是每次我加载页面时,控制台都会收到以下警告,我想将其删除。

这是警告-

Warning: A component is `contentEditable` and contains `children` managed by React.
It is now your responsibility to guarantee that none of those nodes are unexpectedly modified or duplicated.
This is probably not intentional.
div
FormControl@http://localhost:3001/static/js/1.chunk.js:31598:18
WithStyles@http://localhost:3001/static/js/1.chunk.js:78328:25
TextField@http://localhost:3001/static/js/1.chunk.js:52126:22
WithStyles@http://localhost:3001/static/js/1.chunk.js:78328:25

如果我错过了任何信息或代码片段,请告诉我。

JavaScript ReactJS 控制台 组件 警告

评论

0赞 Cerbrus 9/2/2022
如果你阅读了警告,你可以看到问题出在哪里......你有一个由 React 管理的孩子......这可能是无意的,并且很可能导致问题。contentEditable
0赞 Prerak Mathur 9/2/2022
是的,我知道这一点,与警告中提到的“这可能不是故意的”不同,它实际上是故意的。我只想删除或隐藏此警告。
0赞 Cerbrus 9/2/2022
我认为不可能压制这个警告。

答: 暂无答案