黑曜石记账项目介绍

黑曜石记账 平台:手机 包含界面 首页详情页面、账目编辑页面、添加记账页面、添加记账标签页面、图表统计页面 功能: 记账:金额 标签 备注 类型 管理标签:添

一篇说通React类组件

类组件 1.ES6如何创建组件 1 2 3 4 5 6 7 8 9 10 import React from 'react' class B extends React.Component{ constructor(props){ super(props) } render(){ return <div>hi</div> } } 234行可以省掉(如果不需要在constructor里做什么

浅析两种React组件

React两种组件 1.函数组件 1 2 3 4 function Welcome(props){ return <h1>Hello,{props.name}</h1> } <Welcome name="carri" /> 2.类组件(注意this) 1 2 3 4 5 6 class Welcome extends React.Component{ return { <h1>Hello,{this.props.name}</h1> } } <Welcome name="carri" /> 3.关于这里的Welco