Uncaught ReferenceError: React is not defined

前端 未结 12 1873
予麋鹿
予麋鹿 2020-11-30 02:17

I am trying to make ReactJS work with rails using this tutorial. I am getting this error:


Uncaught ReferenceError: React is not defined

12条回答
  •  南笙
    南笙 (楼主)
    2020-11-30 02:38

    Try to add:

    import React from 'react'
    import { render } from 'react-dom'
    window.React = React
    

    before the render() function.

    This sometimes prevents error to pop-up returning:

    React is not defined

    Adding React to the window will solve these problems.

提交回复
热议问题