react native初学之路--The development server returned response error code 500错误

  最近学习的时候经常遇见这种错误,出现的错误种类一般不是一种,在stackOverflow中找到一种解决办法:

  在项目跟目录运行下列代码:

  1.yarn remove babel-preset-react-native

  2.yarn add [email protected]

  如果没有安装yarn可以用npm

时间: 2024-10-25 12:43:50

react native初学之路--The development server returned response error code 500错误的相关文章

写Storage Table时报The remote server returned an error: (409) Conflict.

今天在往 Azure Storage Table中写入一条记录时,在刚开始老报 The remote server returned an error: (409) Conflict. 的异常,过了一阵子又好了.百思不得其解,后来终于在MSDN中找到了一段解释: When a table is successfully deleted, it is immediately marked for deletion and is no longer accessible to clients. Th

System.Net.WebException : The remote server returned an error: (415) UNSUPPORTED MEDIA TYPE

I am having problems with a bit of code that accesses a restful web service. Running this code, it errors out at var httpResponse = (HttpWebResponse)httpWebRequest.GetResponse(); and the exception returned is: "System.Net.WebException : The remote se

WebService:The remote server returned an error: (400) Bad Request

开发工具:VS2010.开发组件:WebService.运行环境:Windows 今天一个同事在进行计费接口联调试时,发现了一个非常奇怪的问题:接口在家里环境测试,一切正常,但是部署到现网环境之后,连续调用几次接口就会出现错误:The remote server returned an error: (400) Bad Request,然后回收一下WebService自己的程序池,再调用又可以了,再连续调用几次,又出现了上面的问题. 他来找我帮忙查问题,在了解整个过程之后,我就直接根据经验,设置

React Native 初学-环境搭配

一.环境需求 1.1 .安装HomeBrew 安装方式 ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" 1.2.安装npm和Node.js : Node.js安装地址: https://nodejs.org/en/download/ 安装位置: Node.js was installed at /usr/local/bin/node npm was ins

React Native初学踩的那些坑

1.react native - expected a component class, got [object Object] 组件引用名称必须是首字母大写 譬如: import Login from './login'; //文件名称和里面的类名首字母小写都没关系,但是引用的别名必须首字母大写 2.TextInput不显示 必须要设置TextInput的高度,默认是没有边框的 textInput :{ height : 40, borderColor: 'gray', borderWidth

React native采坑路

1. Running 1 of 1 custom shell scripts 卡住的问题. 分析: 四个文件没有下载完成. boost_1_63_0.tar.gz folly-2016.09.26.00.tar.gz double-conversion-1.1.5.tar.gz glog-0.3.4.tar.gz 1.下载文件 ---->这里有解决方案: http://bbs.reactnative.cn/topic/4301/ios-rn-0-45%E4%BB%A5%E4%B8%8A%E7%8

win server 2008 r2 iis+php 500错误内部服务器错误。

今天遇到一个错误是iis 500错误,由于server是别人负责的.查看日志没什么异常,就发如今任务日志里发现有一段时间间隔没有记录.一開始不知道为什么.之后日志里就都是500错误了,在iis哪里配置日志的时候发现了一个错误"无法使用虚拟文件夹password作为用户 administrator"  在本地登录到 C:cish\,最后询问了下对方机房工作人员,是改动了serverpassword,而且重新启动server,导致訪问权限出现故障 watermark/2/text/aHR0

HttpWebRequest WebExcepton: The remote server returned an error: (407) Proxy Authentication Required.

1. Supply the credentials of the Currently Logged on User to the Proxy object similar to this: // Begin code change by jeff // Obtain the 'Proxy' of the Default browser. IWebProxy theProxy = aReq.Proxy; // Print the Proxy Url to the console. if (theP

The remote server returned an error: (401) Unauthorized - 最妖root case,mark下

昨天用.net console application读取sharepoint list列表,在本地一切正常,一传到服务器上就报401未授权的错误,尝试了各种办法都没有解决.最后发现原因是我的AD账号只能在本机使用,在其他电脑上都不能用,非常雷人的root cause.也许是被管AD账号的同事坑了,也许是我的人品昨天有点差,特mark下,一来作为提醒,二来也是说明做事不要随便,走正规流程就不会出现类似的囧境. 原文地址:https://www.cnblogs.com/61007257Steven