程序员鸡皮
文章 分类 评论
116 3 31

站点介绍

一名PHP全栈程序员的日常......

React中组件的插槽实现

abzzp 2025-03-24 227 0条评论 前端 React

首页 / 正文
本站是作为记录一名北漂程序员编程学习以及日常的博客,欢迎添加微信BmzhbjzhB咨询交流......

发布于2024-07-04

插槽是React中比较重要的一个概念,它允许你将组件的一部分内容替换为自定义内容。在React中,插槽的实现主要通过children属性来完成。下面我们来详细了解一下React中插槽的实现。

React中的插槽

我们先看下面例子:

import React,{Component} from "react";
import NavBar from "./nav-bar";
import NavBarTwo from "./nav-bar-two";

export class App extends Component{
    render(){
        const btn = <button>按钮2</button>
        
        return (
            <div>
                {/* 1.使用children实现插槽 */}
                <NavBar>
                    <button>按钮</button>
                    <h2>哈哈哈</h2>
                    <i>斜体文本</i>
                </NavBar>
                {/* 2.使用props实现插槽 */}
                <NavBarTwo leftSlot={btn} centerSlot={<h2>呵呵呵</h2>} rightSlot={<i>斜体2</i>}></NavBarTwo>
            </div>
        )
    }
}


export default App;

上面代码中,我们使用了两个组件,NavBarNavBarTwo,它们都是通过插槽来显示内容。NavBar组件通过children属性来接收内容,然后通过{this.props.children}来显示内容。NavBarTwo组件通过props来接收内容,然后通过{this.props.leftSlot}{this.props.centerSlot}{this.props.rightSlot}来显示内容。

NavBar组件

我们先来看一下NavBar组件的实现:

import React,{Component} from "react";
import PropTypes from "prop-types"
import "./style.css"

export class NavBar extends Component{
    render(){
        const { children } = this.props
        console.log(children)
        
        return (
            <div className='nav-bar'>
                <div className="left">{children[0]}</div>
                <div className="center">{children[1]}</div>
                <div className="right">{children[2]}</div>
            </div>
        )
    }
} 

NavBar.propTypes = {
    childern:PropTypes.array
}

export default NavBar

这里再附上style.css文件:

h1,h2,body{
    margin: 0px;
    padding: 0px;
}

.nav-bar{
    display: flex;
    height: 40px;
    line-height: 40px;
    text-align: center;
}

.left,.right{
    width: 80px;
    background-color: #f00;
}

.center{
    flex:1;
    background-color: #f80;
}

这里我们通过childern来接收插槽内容,并通过children[0]children[1]children[2]来分别显示左侧、中间和右侧的内容。可以看到,NavBar组件的实现非常简单,通过children来接收插槽内容,然后通过{this.props.children}来显示内容。

NavBarTwo组件

我们再来看一下NavBarTwo组件的实现:

import React,{Component} from "react";

export class NavBarTwo extends Component{
    render(){
        const { leftSlot,centerSlot,rightSlot } = this.props
        
        return (
            <div className="nav-bar">
                <div className="left">{leftSlot}</div>
                <div className="center">{centerSlot}</div>
                <div className="right">{rightSlot}</div>
            </div>
        )
    }
} 

export default NavBarTwo

这里我们通过props来接收插槽内容,然后通过{this.props.leftSlot}{this.props.centerSlot}{this.props.rightSlot}来分别显示左侧、中间和右侧的内容。可以看到,NavBarTwo组件的实现也非常简单,通过props来接收插槽内容,然后通过{this.props.children}来显示内容。

本文总结

本文主要介绍了React中插槽的实现,通过children属性和props来实现插槽。通过本文的介绍,相信大家已经对React中插槽的实现有了更深入的了解。这里我们就会发现React的灵活之处了吧!最后我们附上效果图:

React中组件的插槽实现

感谢大家观看,我们下次见

评论(0)

最新评论

  • 城市教堂

    我热爱 旅游专栏。令人惊艳了解路线。

  • 湖山風光

    欣赏你的照片, 我明白, 世界很美。感谢 旅行灵感。

  • 古競技場

    读起来像小说。继续保持 带来的灵感。

  • 奧運聖火

    让人精神焕发的 帖子! 我准备订票了。

  • abzzp

    以后焦虑了或者迷茫了记得回来看看[[流泪]]

  • 三十三瀑布

    我非常喜欢 出行博客。鼓舞人心查看路线。

  • 天星碼頭

    你们的博客 百分百 帮助选择路线。坚持!

  • 日落鼓掌

    信息丰富的 出行资源! 越来越棒!

  • digital banking

    My brother suggested I might like this blog. He was entirely right. This post actually made my day. You cann't imagine just how much time I had spent for this information! Thanks!

  • 碧海藍灣

    我热爱, 写得很实在。你的博客 就是 最好的例子。很出色。

日历

2026年02月

1234567
891011121314
15161718192021
22232425262728

文章目录

站点公告
本站是作为记录一名北漂程序员编程学习以及日常的博客,欢迎添加微信BmzhbjzhB咨询交流......
点击小铃铛关闭
配色方案