在控制台我看到这个警告:
index.js:2178 警告:Body 有一个名为 shouldComponentUpdate() 的方法。扩展 React.PureComponent 时不应使用 shouldComponentUpdate。如果使用 shouldComponentUpdate,请扩展 React.Component。
Body
组件正在使用
...
import { observer, inject } from 'mobx-react';
...
@inject('store')
@observer
class Body extends React.PureComponent<BodyProps> {
...
但在任何地方都没有这种shouldComponentUpdate
方法。
这是从哪里来的mobx-react
?我可以在由orPureComponent
装饰的组件中使用吗?@observable
@inject