警告:在 StrictMode 中不推荐使用 findDOMNode。findDOMNode 传递了一个在 StrictMode 内的 Transition 实例

IT技术 javascript reactjs react-component react-state strict-mode
2021-03-29 13:01:40

我正在尝试使用一个函数作为组件内的props,而这个组件是另一个组件的子组件。但该功能不起作用。?我能知道为什么吗。这是我在控制台中收到的警告。

警告:在 StrictMode 中不推荐使用 findDOMNode。findDOMNode 传递了一个位于 StrictMode 内的 Transition 实例。相反,直接向要引用的元素添加 ref

这是我的代码

class Todo extends Component {
  state = {
    show: false,
    editTodo: {
      id: "",
      title: "",
      isCompleted: false
    }
  }
  handleClose = () => {
    this.setState({ show: false })
  }
  handleShow = () => {
    this.setState({ show: true })
  }
  getStyle () {
    return {
      background: '#f4f4f4',
      padding: '10px',
      borderBottom: '1px #ccc dotted',
      textDecoration: this.props.todo.isCompleted ? 'line-through'
        : 'none'
    }
  }
  //this method checks for changes in the edit field
  handleChange = (event) => {
    this.setState({ title: event.target.value })
    console.log(this.state.editTodo.title);
  }

  render () {
    //destructuring
    const { id, title } = this.props.todo;
    return (
      <div style={this.getStyle()}>
        <p>
          <input type='checkbox' style={{ margin: "0px 20px" }} onChange={this.props.markComplete.bind(this, id)} /> {''}
          {title}
          <Button style={{ float: "right", margin: "0px 10px" }} variant="warning" size={"sm"} onClick={this.handleShow}>Edit</Button>{' '}
          <Button style={{ float: "right" }} variant="danger" size={"sm"} onClick={this.props.DelItem.bind(this, id)}>Delete</Button>
        </p>
        <Modal show={this.state.show} onHide={this.handleClose}>
          <Modal.Header closeButton>
            <Modal.Title>Edit your Task!</Modal.Title>
          </Modal.Header>
          <Modal.Body >
            <FormGroup >
              <Form.Control
                type="text"
                value={this.state.editTodo.title}
                onChange={this.handleChange}
              />
            </FormGroup>
          </Modal.Body>
          <Modal.Footer>
            <Button variant="secondary" onClick={this.handleClose}>
              Close
                          </Button>
            <Button variant="primary" onClick={this.handleClose}>
              Save Changes
                          </Button>
          </Modal.Footer>
        </Modal>
      </div>
    )

  }
}
6个回答

在 index.js 中更改<React.StrictMode><App /><React.StrictMode><App />,您将不会看到此警告。请注意,严格模式可以帮助您

  • 识别生命周期不安全的组件
  • 关于旧字符串引用 API 使用的警告
  • 有关已弃用的 findDOMNode 用法的警告
  • 检测意外的副作用
  • 检测遗留上下文 API

删除之前请参考https://reactjs.org/docs/strict-mode.html

更好地解决根本原因
2021-06-03 13:01:40
如何解决这个根本原因?
2021-06-08 13:01:40
当警告来自第三方库时有用的解决方案。
2021-06-08 13:01:40
Next.js 呢?在 next.config.js module.exports = { reactStrictMode: false, } 没有帮助
2021-06-16 13:01:40

如果您使用的是 Modal 或 Carousel,则react-bootstrap解决方法是禁用动画关闭它们会使警告消失。

对于模态:

<Modal animation={false}>
    <Modal.Header closeButton>
        <Modal.Title>Title</Modal.Title>
    </Modal.Header>
    <Modal.Body>
        Content
    </Modal.Body>
</Modal>

对于轮播:

<Carousel slide={false} fade={false}>
    <Carousel.Item>
      Scene 1
    </Carousel.Item>
    <Carousel.Item>
      Scene 2
    </Carousel.Item>
</Carousel>

我知道一旦它不回答 OP 问题,它更适合作为评论,但我没有足够的声誉来这样做,也许它可以帮助某人。

如果您使用的是来自 react bootstrap 的 OverlayTrigger,则设置transition={false}可以解决问题。
2021-05-27 13:01:40
另一个注意事项:如果你在同一个页面上有多个 react-bootstrap modals 需要 anmation={false}
2021-06-02 13:01:40
请注意:当您运行构建版本时,警告似乎消失了。
2021-06-21 13:01:40

@Ross Allen 的响应与基本问题(警告)无关,它解决了代码中的语法问题。

@Ali Rehman 的回应更多地与警告有关,但它也没有正确解决问题,它只是隐藏了问题,以便不再出现警告.. 如果我们不关心弃用,为什么不呢!

是的,问题来自 React.StrictMode:

<React.StrictMode>
 <App />
</React.StrictMode>

StrictMode 是一种用于突出应用程序中潜在问题的工具。它会为其后代激活额外的检查和警告,例如:

  • 识别生命周期不安全的组件
  • 关于旧字符串引用 API 使用的警告
  • 有关已弃用的 findDOMNode 用法的警告
  • 检测意外的副作用
  • 检测遗留上下文 API

由于问题中没有完全给出错误回溯,我猜这个问题与关于已弃用的 findDOMNode 用法警告有关,因为在渲染方法中引用了元素:

<Modal show={this.state.show} onHide={this.handleClose}>
      <Modal.Header closeButton>
        <Modal.Title>Edit your Task!</Modal.Title>
      </Modal.Header>
      <Modal.Body >
        <FormGroup >
          <Form.Control
            type="text"
            value={this.state.editTodo.title}
            onChange={this.handleChange}
          />
        </FormGroup>
      </Modal.Body>
      <Modal.Footer>
        <Button variant="secondary" onClick={this.handleClose}>
          Close
                      </Button>
        <Button variant="primary" onClick={this.handleClose}>
          Save Changes
                      </Button>
      </Modal.Footer>
    </Modal>

当组件被渲染时,模态也被渲染了,我们尝试改变组件的状态,组件(以及模态)将重新渲染,在这个阶段模态无法访问状态.

解决警告的解决方案是使用React refsRefs 有助于访问在 render 方法中创建的 DOM 节点或 React 元素。

你能提供一些例子吗?你说的对我来说很有意义。我试图设置ref={myRef}为模态和target={myRef}按钮,但我仍然收到警告。我正在使用带有钩子的函数组件。谢谢!
2021-05-28 13:01:40

setState调用看起来好像写错了地方。确保它在editTodo对象上:

    handleChange = (event) => {
        this.setState(state => ({
          editTodo: {
            ...state.editTodo,
            title: event.target.value,
          },
        }));
    }
您不必担心该警告。我猜它来自您用于ModalButton组件的任何库(也许是 react-bootstrap?)。警告该功能已被弃用,但这意味着它仍然可以正常工作,但将在未来的 React 版本中删除。
2021-06-06 13:01:40
@RossAllencss-transtion来自react-transition-group创建相同的警告
2021-06-12 13:01:40
坦克斯人。这解决了我的部分问题。现在我可以从函数中获得预期的输出。但是警告仍然存在。总之谢谢你!。
2021-06-12 13:01:40
答案确实与标题中提出的问题无关,您的评论更适合作为答案,而答案更适合作为评论恕我直言。
2021-06-17 13:01:40

我不确定它在使用 material-ui 库时是否有帮助,但在许多情况下这会有所帮助:

const nodeRef = React.useRef(null);
return <div>
  <CSSTransition ... nodeRef={nodeRef}>
    <div ref={nodeRef}> ... </div>
  </CSSTransition>
</div>