Uncaught ReferenceError: React is not defined

前端 未结 12 1855
予麋鹿
予麋鹿 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:48

    If you are using Webpack, you can have it load React when needed without having to explicitly require it in your code.

    Add to webpack.config.js:

    plugins: [
       new webpack.ProvidePlugin({
          "React": "react",
       }),
    ],
    

    See http://webpack.github.io/docs/shimming-modules.html#plugin-provideplugin

提交回复
热议问题