开发react也有一段时间了,一开始的随手写,生命周期乱用,无状态组件的不熟悉.现在逐渐规范一下,从网上各个地方copy过来,整理出一份文档.可能不全,后续还得多提炼总结和完善. 一.组件内方法书写,先写生命周期函数(按执行顺序写),再写自定义函数. import React,{ Component } from 'react'; class Demo extends Component { constructor(props,context) { super(props,context) th…