Uncaught ReferenceError: React is not defined

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

    Possible reasons are 1. you didn't load React.JS into your page, 2. you loaded it after the above script into your page. Solution is load the JS file before the above shown script.

    P.S

    Possible solutions.

    1. If you mention react in externals section inside webpack configuration, then you must load react js files directly into your html before bundle.js
    2. Make sure you have the line import React from 'react';

提交回复
热议问题