The development server returned response error code: 500 in react native

前端 未结 16 1229
夕颜
夕颜 2021-02-05 01:29

I am using react-native framework for developing my android app. I want to use react-native-material-design library for making Toolbar wit

16条回答
  •  夕颜
    夕颜 (楼主)
    2021-02-05 02:15

    Sometime this error arise when you don't specify the correct path of .js files

    Like instead of typing the Correct path :

    var WeatherProject = require('./Main/WeatherProject');
    

    A Wrong Path is typed (capitalization,spelling error,special symbols) :

    var WeatherProject = require('./WeatherProject');
    

提交回复
热议问题