报错一:

Attempted to transition from state `RESPONDER_INACTIVE_PRESS_IN` to `RESPONDER_ACTIVE_LONG_PRESS_IN`, which is not supported. This is most likely due to `Touchable.longPressDelayTimeout` not being cancelled.

产生原因:

可能是在Touchablexxx在这组组件中调用onPress方法使产生

解决方法:

关闭debug报错就不会产生,不会影响的项目的开发

告警一:

Warning: Can only update a mounted or mounting component. This usually means you called setState, replaceState, or forceUpdate on an unmounted component. This is a no-op.

Please check the code for the WindProfile component.

产生的原因:

在组件进行切换是调用的this.setState未能释放/已经销毁,而造成的告警

解决方法:

componentWillUnmount() {
    this.setState = (state, callback) => {
        return;
    };
}

告警二:

Warning: In next release empty section headers will be rendered. In this release you can use 'enableEmptySections' flag to render empty section headers.

产生原因:

页面中存在空的数据

解决方法:

在listView中添加

enableEmptySections={true}

最新文章

  1. 《代码的未来》读书笔记:内存管理与GC那点事儿
  2. LogPolar 对数极坐标
  3. Android SDK ADT下载地址
  4. linux 进程监控
  5. Quick-Cocos2d-x v3.3 异步加载Spine方案 转
  6. CentOS 最小化安装后安装桌面
  7. window服务创建
  8. 达到J2EE在后台action控制接待javascript弹出的对话框
  9. java 连接 elasticsearch 报错java.lang.NoClassDefFoundError: org/apache/http/auth/Credentials 解决
  10. 【一天一道LeetCode】#36. Valid Sudoku
  11. ubuntu安装rpm的方法
  12. Python学习(四十二)—— Djago-model进阶
  13. 【转载】MySQL5.7 添加用户、删除用户与授权
  14. sql server 合并字段
  15. 常见26种NLP任务的练手项目
  16. 定时获取MySQL库的大小
  17. masonry 基本用法
  18. 20145308 《网络对抗》 注入shellcode+Return-to-libc攻击 学习总结
  19. Web 前沿——HTML5 Form Data 对象的使用
  20. CCF 2015-03-3 节日

热门文章

  1. 【DFS】求水洼的数目
  2. [Swift]LeetCode93. 复原IP地址 | Restore IP Addresses
  3. [Swift]LeetCode99. 恢复二叉搜索树 | Recover Binary Search Tree
  4. [Swift]LeetCode325. 最大子数组之和为k $ Maximum Size Subarray Sum Equals k
  5. [Swift]LeetCode509. 斐波那契数 | Fibonacci Number
  6. [Swift]LeetCode994. 腐烂的橘子 | Rotting Oranges
  7. Swagger2 添加HTTP head参数
  8. 【Scala篇】--Scala中集合数组,list,set,map,元祖
  9. 仓储模式Repository的选择与设计
  10. Solr 07 - Solr从MySQL数据库中导入数据 (Solr DIH的使用示例)