web-dev-qa-db-ja.com

警告:findDOMNodeはStrictModeで非推奨になりました。 findDOMNodeにStrictMode内にあるTransitionのインスタンスが渡されました

関数をコンポーネント内の小道具として使用しようとしていますが、このコンポーネントは別のコンポーネントの子です。しかし、機能が動作していません。理由をお聞かせいただけますか。これは、コンソールで受け取る警告です。

警告:findDOMNodeはStrictModeで非推奨になりました。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
Niroshan_Krish

Index.jsの変更<React.StrictMode><App /><React.StrictMode>から<App />この警告は表示されません。

2
Ali Rehman

問題:あなたの実装では、以下のようなところから来ています:

mount = createMount({strict: true});

修正:以下のようになります:

mount = createMount(); // by default, it is false

マウントが正しく行われていることを確認してください。

0
AdroitSJ