博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
记录学习RN遇到的报错
阅读量:6325 次
发布时间:2019-06-22

本文共 1303 字,大约阅读时间需要 4 分钟。

格式:【描述】 【截图】 【解决】 【参考】

ios

关键词:EMFILE

【描述】

ERROR Error watching file for changes: EMFILE

{"code":"EMFILE","errno":"EMFILE","syscall":"Error watching file for changes:","filename":null}
Error: Error watching file for changes: EMFILE

at _errnoException (util.js:1041:11)at FSEvent.FSWatcher._handle.onchange (fs.js:1359:9)

【截图】

图片描述

【解决】

升级最新MacOS系统后,需要重新安装一次brew install watchman

或者

需要安装watchman

git clone

cd watchman
./autogen.sh
./configure
make
sudo make install

【参考】

android

关键词:override

【描述】

Native module VectorIconsModule tried to override VectorIconsModule for module name RNVectorIconsModule. If this was your intention, set canOverrideExistingModule=true

【截图】

clipboard.png

【解决】

找到MainApplication.java(android/app/src/main/java/com),里面有有重复的引用,把重复的部分删除就行了

import com.oblador.vectoricons.VectorIconsPackage;// 删除...public class MainApplication extends Application implements ReactApplication {    ...    new VectorIconsPackage(), // 删除}

【参考】

关键词:refs

【描述】

addComponentAsRefTo(...): Only a ReactOwner can have refs. You might be adding a ref to a component that was not created inside a component's render method, or you have multiple copies of React loaded (details:

【截图】

clipboard.png

【解决】

this.refs.abcd // 如果在rander之外使用ref就会报错报错改成:myRefs = { abcd: null}
{this.myRefs.abcd = abcd}}>this.myRefs.abcd

转载地址:http://oxmaa.baihongyu.com/

你可能感兴趣的文章
Vbs脚本编程简明教程之三
查看>>
IT服务管理的指挥与智慧
查看>>
每天一个知识点linux(十一)任务计划
查看>>
ACL与磁盘配额结合应用小结
查看>>
基于LinuxOPENldap实验之账户管理
查看>>
交换机上配置PVST
查看>>
多程序集版本冲突问题
查看>>
MariaDB九之基于mysql-porxy实现读写分离
查看>>
OC异常处理
查看>>
【android工程转为lib工程后提示'R.id.xxx不能作为case语句的表达式'的解决办法】...
查看>>
网御神州IDS产品安装手册
查看>>
获取计算机广域网IP的一个例子
查看>>
总结之:CentOS 6.5 HTTPD服务的全面解读及配置详解(2)
查看>>
7834:分成互质组
查看>>
使用Configuration Manager配置资产智能
查看>>
ISA 服务器遭遇 RPC 故障
查看>>
使用高级特性增强网络稳定性探究
查看>>
数据结构 - 二叉树(重构 + 遍历)
查看>>
Android自定义View探索(二)—常用工具
查看>>
[开源c-FFMpeg]Android add prebuilt lib(*.so) to Android.mk
查看>>