0%

1. Component存在的问题?

  1. 父组件重新render(), 当前组件也会重新执行render(), 即使没有任何变化
  2. 当前组件setState(), 重新执行render(), 即使state没有任何变化

2. 解决Component存在的问题

  1. 原因: 组件的componentShouldUpdate()默认返回true, 即使数据没有变化render()都会重新执行
  2. 办法1: 重写shouldComponentUpdate(), 判断如果数据有变化返回true, 否则返回false
  3. 办法2: 使用PureComponent代替Component
  4. 说明: 一般都使用PureComponent来优化组件性能
    阅读全文 »

1.抓包

首先用CDlinux系统进行抓包,CDlinux抓包我就不详细说明了

  1. 到这里可以查看如何安装CDlinux http://jingyan.baidu.com/article/7f766daf5173a94101e1d0fa.html
  2. 到这里可以查看如何使用CDlinux http://jingyan.baidu.com/article/1e5468f9293d07484961b7d4.html

2.简介