Reactjs:未捕获的TypeError:无法将属性'innerHTML'设置为null

时间:2018-12-28 08:36:38

标签: javascript reactjs dom react-component

import React, { Component } from 'react';
import ReactDOM from 'react-dom';

export default class Game extends Component {
  constructor(props) {
    super(props);
    this.myRef = React.createRef();
    this.check = this.check.bind(this);
  }


 drawBackground() {
    console.log("worked");
}

  check () {
    this.myRef.current.innerHTML  = "Testing";
    {this.drawBackground()}      
  }

  render() {
    return (
        <div>
          <h1 ref={this.myRef} id="foo">bar</h1>
          {this.check()}
</div>
    );
  }
}

我需要访问text函数中h1标记内的check,但是出现此错误Reactjs:Uncaught TypeError:无法将属性'innerHTML'设置为null。我遵循了文档。我想念什么吗?

2 个答案:

答案 0 :(得分:2)

首先在第一个render()之后设置ref

一次检查演示demo

在声明后立即引用ref,因为ref对象接收组件的已安装实例作为其当前实例。

这是您在尝试生成DOM的同时尝试访问它。 this.myRef将不返回任何内容,因为该组件在render中没有真正的DOM表示。

答案 1 :(得分:1)

您需要将值分配给参考。 您正在将ref作为函数传递。

class App extends React.Component {
  constructor(props) {
    super(props);
    this.check = this.check.bind(this);
  }

  state = {
    dom: null
  };

  drawBackground() {
    console.log("worked");
  }

  componentDidMount() {
    this.check();
  }

  check() {
    const innerHTML = ReactDOM.findDOMNode(this.myRef).innerHTML;
    setTimeout(
      () => (ReactDOM.findDOMNode(this.myRef).innerHTML = "TEST"),
      1000
    );
    console.log(innerHTML);
    this.setState({
      dom: innerHTML
    });
    {
      this.drawBackground();
    }
  }

  render() {
    return (
      <div>
        <h1 ref={ref => (this.myRef = ref)} id="foo">
          bar
        </h1>{" "}
        //You need to assign the value of the ref to the instance variable
      </div>
    );
  }
}