函数式组件
// 创建函数式组件
function MyComponent() {
console.log(this)//this undefined 因为Babel开启了 严格模式
return <h1>我是用函数定义的组件</h1>
}
//渲染虚拟DOM
ReactDOM.render(<MyComponent/>,document.getElementById("container"))
函数式组件
// 创建函数式组件
function MyComponent() {
console.log(this)//this undefined 因为Babel开启了 严格模式
return <h1>我是用函数定义的组件</h1>
}
//渲染虚拟DOM
ReactDOM.render(<MyComponent/>,document.getElementById("container"))
本文标题:React 面向组件编程
本文链接:https://www.haomeiwen.com/subject/cguefrtx.html
网友评论