记一次网页性能问题定位

2019-07-02
阅读 4 分钟
3.9k
这里我使用了 Chrome DevTools 的 Performane 面板来进行网页性能分析,它可以记录和分析应用在运行时的所有活动,是发现应用中可觉察性能问题的最佳位置。

react16生命周期方法

2019-01-15
阅读 4 分钟
3k
所有生命周期方法: constructor getDerivedStateFromProps new render componentDidMount getDerivedStateFromProps new shouldComponentUpdate render getSnapshotBeforeUpdate new componentDidUpdate componentWillUnmount getDerivedStateFromError new componentDidCatch new constructor (props) constructor一般...

hasOwnProperty

2019-01-09
阅读 2 分钟
3.1k
for...in 循环会遍历所有可枚举属性,加上hasOwnProperty()方法,可以忽略掉继承属性,这样就能确保遍历的是Obj的可枚举的自身属性。