美文网首页
react 组件抽离,封装

react 组件抽离,封装

作者: ticktackkk | 来源:发表于2021-01-03 17:56 被阅读0次

子组件

核心就是父组件给子组件传props,没啥好说的

import React from 'react';
class MyComponents extends React.Component {
    constructor(props) {
        super(props);
        this.state = {}
        console.log(props);
    }
    render() {
        return (
            <div>
                <img src={this.props.src}></img>
            </div>
        );
    }
}

export default MyComponents;

父组件

import React, { useEffect, useState } from 'react';
import MyComponents from './components/uploder'
class App extends React.Component {
    constructor(props) {
        super(props);
        this.state = {  }
    }
    render() { 
        return ( 
            <MyComponents src='https://img-bss.csdn.net/1606271766185.jpg'></MyComponents>
         );
    }
}
 
export default App;

相关文章

  • react 组件抽离,封装

    子组件 核心就是父组件给子组件传props,没啥好说的 父组件

  • react 组件公共逻辑抽离

    react 组件公共逻辑抽离方式,主要为: mixin,早期实现方式,现已被 react废弃,这里不再介绍 HOC...

  • react中的组件复合,用于抽离js

    react中的组件复合类似于vue的插槽 react推荐我们当组件间有共同的js逻辑时候,可以进行抽离而不是继承。...

  • react-native-waterfall-layout组件使

    react-native-waterfall-layout 基于react-native官方组件封装的瀑布流组件 ...

  • React Native基础<三>开发常用技巧

    1、无状态组件我们在开发React Native的时候有时候会把样式相同的组件抽离出来,比如ListViewCel...

  • React概念

    介绍 React的核心思想是:封装组件。React大体包含下面概念: 组件React 应用都是构建在组件之上。上面...

  • React-Native使用echarts

    首先安装我封装的组件 react-native-zy-echarts 以及依赖的组件 react-native-w...

  • React高阶组件

    高阶组件定义:高阶组件就是一个函数,该函数接受一个组件作为参数,并返回一个新的组件高阶组件的作用:封装并抽离组件中...

  • 6.Conditional Rendering(条件渲染)

    React版本:15.4.2**翻译:xiyoki ** 在React中,你可以创建许多不同的组件,这些组件封装了...

  • 2018-11-19

    组件库weex-ui Weex 原生组件的封装应该注意什么? 1. 通用性,只有多个业务同时在使用,同时具备可抽离...

网友评论

      本文标题:react 组件抽离,封装

      本文链接:https://www.haomeiwen.com/subject/jxwvoktx.html