11 2018 档案
摘要:iOS9 & iOS10 & iOS11 HTTP 不能正常使用的解决办法 xcode ios 291.4k 次阅读 · 读完需要 8 分钟 iOS9 & iOS10 & iOS11 HTTP 不能正常使用的解决办法 xcode ios 291.4k 次阅读 · 读完需要 8 分钟 iOS9 & i
阅读全文
摘要:Components Learn how to type React class components and stateless functional components with Flow Search docs Components Learn how to type React class
阅读全文
摘要:一、环境准备: 1、下载安装VSCode,Node.js,Yarn 2、打开命令行终端或powershell,输入yarn global add create-react-app安装react的脚手架create-react-app 3、打开VSCode,安装相应插件 必要:ESLint、Docum
阅读全文
摘要:Genymotion虚拟镜像下载慢或者失败的解决办法 http://files2.genymotion.com/dists/8.0.0/ova/genymotion_vbox86p_8.0_180611_152321.ova Genymotion虚拟镜像下载慢或者失败的解决办法 http://fil
阅读全文
摘要:一、 let、const 和 var let和const只在当前块级作用域中有效const用来声明常量var是全局作用域有效的 constants.js 模块export const A = 1;export const B = 3;export const C = 4; test1.js 模块im
阅读全文
摘要:React Native基础教程 React Native是Facebook开源的框架,用来写Android和iOS移动App。它的口号是 “Learning once, write anywhere”,目的是统一View的编写。我个人也是由于公司需要,故入坑学习,下面就我的理解简单总结下React
阅读全文
摘要:ReactNative前端开发者 文档版本0.0.2 Author: Necfol 说明: 本文档用于指导前端React Native的开发,如需开发其他其他框架应用,不适用本文档 前期准备 1、搭建脚手架 1.1、安装脚手架工具 通过 npm 安装 React Native 脚手架命令行工具 1.
阅读全文
摘要:React Native 日常报错 'config.h' file not found React Native 日常报错 'config.h' file not found React Native 日常报错 'config.h' file not found React Native 日常报错
阅读全文
摘要:1. 安装jdk1.8 2.复制android sdk 设置代理 mirrors.neusoft.edu.cn 端口 80 http代理 更新sdk 安装 android support repository / intel x86 emulator accelerator 3. 安装virtual
阅读全文
摘要:Sublime Text3(mac)一些插件和快捷键 楚简约 关注 2017.02.24 17:02* 字数 1216 阅读 412评论 0喜欢 2 楚简约 关注 2017.02.24 17:02* 字数 1216 阅读 412评论 0喜欢 2 2017.02.24 17:02* 字数 1216 阅
阅读全文
摘要:Sublime Text 3 搭建React.js开发环境 Sublime有很强的自定义功能,插件库很庞大,针对新语言插件更新很快,配合使用可以快速搭建适配语言的开发环境。 1. babel-sublime 支持ES6, React.js, jsx代码高亮,对 JavaScript, jQuery
阅读全文
摘要:打开Sublime Text3,点击左上角的Sublime Text3按钮,然后选择“Preferences”里面的“Settings-user” 在打开的配置文件里面,加入下面图中的这句代码即可"open_files_in_new_window":false 设置好后,重启Sublime Text
阅读全文
摘要:Could not GET 'https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle/3.1.2/gradle-3 2018年07月24日 19:05:05 老衲不出家 阅读数:1923 Could not GET
阅读全文
摘要:今天刚升级到Xcode10,就遇到两个报错问题 错误一:Xcode 10: Build input file double-conversion cannot be found error: Build input file cannot be found: '../node_modules/rea
阅读全文
摘要:一直是从事iOS的开发,现在研究下mac环境下reatNative的环境配置: 1. 安装HomeBlew(OS系统上的一个安装包管理器,安装后可以方便后续安装包的安装。) 终端命令: ruby -e "$(curl -fsSL https://raw.githubusercontent.com/H
阅读全文
摘要:情况:根据https://github.com/rebeccahughes/react-native-device-info添加依赖库,运行.xcworkspacea项目后报错 解决:Delete node modules, then run npm install (or better yet y
阅读全文
摘要:我在创建react-native项目时 npm了一个第三方库 结果一打开 xcode 竟然报错 React/RCTBundleURLProvider.h' file not found; 然后 我试了各种网上的方法试了一遍, 还是不行 就在我要放弃的时候 ,突然想到把网上的方法 结合一下 试试,结果
阅读全文
摘要:'React/RCTBundleURLProvider.h' file not found 新建RN项目时在iOS端用xcode跑时有时会遇到 'React/RCTBundleURLProvider.h' file not found 错误,遇到这种错误一般有一下几种情况: 1. 没有执行 npm
阅读全文