好客租房49-组件的props(特点)

简介: 好客租房49-组件的props(特点)

特点

1可以给组件传递任意类型的数据

2props是只读的对象 只能读取属性的值 无法修改对象

3注意:使用类组件时 如果写了构造函数 应该将props传递给super() 否则 无法在构造函数

中获取到props

//导入react

import React from 'react'
 import ReactDOM from 'react-dom'

//导入组件


// 约定1:类组件必须以大写字母开头


// 约定2:类组件应该继承react.component父类 从中可以使用父类的方法和属性


// 约定3:组件必须提供render方法


// 约定4:render方法必须有返回值

class HelloWorld extends React.Component {
     render() {
         console.log(this.props)
         return (
             <div>
                 <h1>props:{this.props.name}</h1>
             </div>
         )
     }
 }
//函数组件
 // const HelloWorld = (props) => {
 //     console.log(props)
 //     return (
 //         <div>
 //             <h1>props:{props.name}</h1>
 //         </div>
 //     )
 // }
 ReactDOM.render(
     <HelloWorld name="geyao" color={['red', 'blue']}
     tags={<p>哈哈哈</p>} />,
     document.getElementById('root')
 )
 //导入react
 import React from 'react'
 import ReactDOM from 'react-dom'
 //导入组件
 // 约定1:类组件必须以大写字母开头
 // 约定2:类组件应该继承react.component父类 从中可以使用父类的方法和属性
 // 约定3:组件必须提供render方法
 // 约定4:render方法必须有返回值
 class HelloWorld extends React.Component {
     constructor(props){
         super(props)
         //constructor中拿不到props
         console.log(props)
     }
     render() {
         console.log(this.props)
         return (
             <div>
                 <h1>props:{this.props.name}</h1>
             </div>
         )
     }
 }
 //函数组件
 // const HelloWorld = (props) => {
 //     console.log(props)
 //     return (
 //         <div>
 //             <h1>props:{props.name}</h1>
 //         </div>
 //     )
 // }
 ReactDOM.render(
     <HelloWorld name="geyao" color={['red', 'blue']}
     tags={<p>哈哈哈</p>} />,
     document.getElementById('root')


相关文章
|
前端开发 JavaScript
好客租房66-render-props模式-2使用模式
好客租房66-render-props模式-2使用模式
95 0
好客租房66-render-props模式-2使用模式
|
前端开发
好客租房54-props深入(children属性)
好客租房54-props深入(children属性)
177 0
好客租房54-props深入(children属性)
|
前端开发 JavaScript
好客租房68-render-props模式-4children代替
好客租房68-render-props模式-4children代替
85 0
好客租房68-render-props模式-4children代替
好客租房16-jsx中的列表渲染
好客租房16-jsx中的列表渲染
94 0
好客租房16-jsx中的列表渲染
好客租房73-4传递props
好客租房73-4传递props
75 0
|
前端开发
好客租房48-组件的props(基本使用)
好客租房48-组件的props(基本使用)
86 0
|
前端开发
好客租房56-props深入(3props校验-约束规则)
好客租房56-props深入(3props校验-约束规则)
94 0
|
前端开发 数据格式
好客租房55-props深入(2props校验)
好客租房55-props深入(2props校验)
83 0
|
算法 JavaScript 前端开发
好客租房75-react组件
好客租房75-react组件
77 0
好客租房65-render-props模式-1思路分析
好客租房65-render-props模式-1思路分析
88 0