摘要: 初始化阶段: 设置组件的默认属性 设置组件的初始化状态 componentWillMount render componentDidMount 运行时: componentWillReceiveProps 触发时机:已经挂载的组件接收到新的props时触发,即使传进来的props没有发生改变也会触发 阅读全文
posted @ 2019-08-17 14:43 小小鸟月亮船 阅读(101) 评论(0) 推荐(0) 编辑
摘要: forEach: 使用return、break等均无法跳出循环 for..in: 1.for in应用于数组,会将数组中的元素和自定义的属性和方法都遍历,自定义在原型对象上的方法也会遍历出来 输出结果:0,1,2,3,4,name,sayHello,str 遍历的是索引,一般不适用于遍历数组,更适用 阅读全文
posted @ 2019-08-17 14:42 小小鸟月亮船 阅读(135) 评论(0) 推荐(0) 编辑