摘要:
1. 事件绑定方式一: 全局方法返回react dom 方式绑定 function ActionLink() { function handleClick(e) { e.preventDefault(); console.log('The link was clicked.'); } // 使用 o 阅读全文
摘要:
简述react的生命周期: react 的生命周期分为3个阶段:分别是挂载,运行中(渲染),和卸载 1. 挂载阶段 1.1 构造函数 constructor() 完成数据初始化,接受两个参数 props (传入的属性) 和 context(上下文对象),当在函数内部使用这两个参数必须使用 super 阅读全文