开发服务器返回respose错误代码:404本机响应

时间:2017-10-16 15:11:55

标签: android react-native

我正在尝试在cmd中运行像这样的原生应用

cd C:\Users\User\Desktop\js

react-native run-android

enter image description here

感谢任何帮助,thx。

3 个答案:

答案 0 :(得分:2)

如果您仍然遇到相同的问题,请杀死端口8081上的所有现有进程,然后再次运行代码。

对于Linux / Ubuntu系统,您可以执行以下操作:

@RequestMapping(method = RequestMethod.POST)
    public ResponseEntity<string> doMyPageController...
        return new ResponseEntity<"Error message" , HttpStatus.BAD_REQUEST>

在此之后再次运行Android应用:

sudo kill $(sudo lsof -t -i:8018)

最初的问题是 React native - The development server returned respose error code:404

答案 1 :(得分:1)

我从react-native v.47升级到最新版后遇到了这个问题。

之前,我的项目使用了两个索引文件,index.ios.jsindex.android.js。在this update之后,只需要一个文件入口点index.js。将索引逻辑移动到同一级别的单个index.js文件中,然后重试。这解决了我的错误。

答案 2 :(得分:0)

您需要使用端口号8081设置react native服务器的IP地址

示例192.168.1.2:8081