Uncaught ReferenceError: ReactDOM is not defined

后端 未结 5 2003
半阙折子戏
半阙折子戏 2021-02-01 01:26

So i have Rails applications, i installed react-rails gem, set it up and try to run test application.

Freshly installed, when i tryed to run hello world program, this er

5条回答
  •  故里飘歌
    2021-02-01 02:07

    ReactDOM available since version 0.14.0, so you need to use React.render (because you have a React version 0.13.3) instead,

    setInterval(function() {
      React.render(
        ,
        document.getElementById('example')
      );
    }, 500);
    

    or upgrade your React version and include ReactDOM

    Changes in React 0.14

提交回复
热议问题