欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

React组件实现越级传递属性

程序员文章站 2024-02-26 20:49:16
...
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 (
			<div>
				父组件
				<Con1 msg="中间件" />
			</div>
		);
	}
}

// 中间的子组件
function Con1(props) {
	return (
		<div>
			子组件 -- {props.msg}
			<Con2 />
		</div>
	);
}

// 内部的孙子组件
// 3. 先进行属性校验,去校验一下父组件传递过来的 参数类型
class Con2 extends Component {
  static contextTypes = {
    color: PropTypes.string
    // 如果子组件,想要使用 父组件通过 context 共享的数据,那么在使用之前,一定要先 做一下数据类型校验
  }

  render() {
    return (
      <div style={{color: this.context.color}}>孙子组件</div>
      // 引用方式 this.context.属性名
    )
  }
}