Could not connect to development server(React Native错误)

RN提示服务器连接不上。
其中的原因之一有可能是在代码中用到了http访问服务器,而在iOS 9之后如果要用http访问就必须在info.plist文件里面添加一下内容

NSAppTransportSecurity
    
        NSExceptionDomains
        
            localhost
            
                NSTemporaryExceptionAllowsInsecureHTTPLoads
                
            
        
    

你可能感兴趣的:(Could not connect to development server(React Native错误))