React组件实现越级传递属性

import React, { Component } from 'react';
import PropTypes from 'prop-types';	//引入属性校验

// 父组件
// getChildContextTypes
// 1. 在 父组件中,定义一个 getChildContext 的函数,返回一个对象,这个对象就是要共享给 所有子孙自建的数据
// 2. 使用 属性校验,规定一下传递给子组件的 数据类型, 需要定义一个静态的(static) childContextTypes
export default class GetChildContext extends Component {
	constructor(props) {
		super(props);
		this.state = {
			color: 'red'
		};
	}

	static propTypes = {
		msg: PropTypes.string
	};

	getChildContext() {
		return {
			color: this.state.color
		};
	}

	static childContextTypes = {
		color: PropTypes.string
	};

	render() {
		return (
			
父组件
); } } // 中间的子组件 function Con1(props) { return (
子组件 -- {props.msg}
); } // 内部的孙子组件 // 3. 先进行属性校验,去校验一下父组件传递过来的 参数类型 class Con2 extends Component { static contextTypes = { color: PropTypes.string // 如果子组件,想要使用 父组件通过 context 共享的数据,那么在使用之前,一定要先 做一下数据类型校验 } render() { return (
孙子组件
// 引用方式 this.context.属性名 ) } }

你可能感兴趣的:(React)