美文网首页
(二)React 拆分组件与组件之间的传值

(二)React 拆分组件与组件之间的传值

作者: 云凡的云凡 | 来源:发表于2020-10-17 12:55 被阅读0次

主要代码:
一、TodoList.jsx

import React, {Component, Fragment} from 'react';
import './todolist.css';
import TodoItem from './TodoItem';

class TodoList extends Component {
  constructor (props) {
    super (props);
    this.state = {
      inputValue: '',
      list: [],
    };
  }
  render () {
    return (
      // Fragment   16版本提供的占位符
      (
        <Fragment>
          <label htmlFor="insertArea">输入内容</label>
          {/* 4.希望点击   <label htmlFor="insertArea">输入内容</label>  光标自动聚焦到 input 框*/}
          <input
            id="insertArea"
            className="input"
            type="text"
            value={this.state.inputValue}
            onChange={this.handleInputChange.bind (this)}
          />
          {/* 1.用组件的this去改变函数的this */}
          <button onClick={this.handleBtnClick.bind (this)}>提交</button>
          <ul>
            {this.state.list.map ((item, index) => {
              return (
                <TodoItem
                  content={item}
                  index={index}
                  key={index}
                  deleteItem={this.handleItemDelete.bind (this)}
                />
              );
            })}
          </ul>
        </Fragment>
      )
    );
  }
  handleInputChange (e) {
    console.log (e.target.value);
    // this.state.inputValue = e.target.value;
    // 2.不能直接去改变组件的值,必须调用setState() 这个方法去改变
    this.setState ({
      inputValue: e.target.value,
    });
  }
  //添加项
  handleBtnClick () {
    this.setState ({
      list: [...this.state.list, this.state.inputValue],
      inputValue: '',
    });
  }
  //   删除项
  handleItemDelete (index) {
    console.log (index);
    // immutable  state 不允许我们做任何改变
    const list = [...this.state.list];
    list.splice (index, 1);
    this.setState ({
      list: list,
    });
  }
}
export default TodoList;

二、TodoItem.jsx

import React, {Component} from 'react';

class TodoItem extends Component {
  constructor (props) {
    super (props);
    this.handleClick = this.handleClick.bind (this);
  }
  render () {
    return (
      <div onClick={this.handleClick}>
        {this.props.content}
      </div>
    );
  }
  handleClick () {
    // 子组件如何调用父组件的方法来修改父组件的内容:把父组件的方法传给子组件,在创建子组件的时候再传递一个方法
    console.log (this.props.index);
    // 子组件被点击的时候,调用父组件传过来的deleteItem()方法,同时把父组件传过来的index传给这个方法
    this.props.deleteItem (this.props.index);
  }
}

export default TodoItem;

总结:

1.父传子:通过标签上的属性的形式传给子组件(既可以传递数据,又可以传递方法),父:<ListItem content={item} key={index}/>,子: <div>{this.props.content}</div>
2.子传(改)父:通过事件,父:一.把方法传给子组件 <ListItem content={item} index={index}
deleteItem={index => {
this.handleItemDlete.bind(this);
}}
/> , handleItemDlete (index) {
const list = [...this.state.list];
list.splice (index, 1);
// this.state.list.splice(index,1) 不允许这样改
this.setState ({
list: list,
});
// console.log (index);
} 二.子:子组件执行父组件传过来的方法:<div onClick={this.handleClick.bind(this)}>{this.props.content}</div>, handleClick(){
this.props.deleteItem(this.props.index) //函数 deleteItem 的this指向父组件
}

需要完整代码,也可以加我微信: hello_helloxi

E:\20201017-React\farther-child

相关文章

  • React Learning(Day2)(2019.7.6)

    React Learning(Day2)(2019.7.6) 日常挤牙膏 一、拆分组件与组件之间的传值 1.父组件...

  • react子组件向父组件传值

    相关资料:react 父组件怎么获取子组件的这个值React组件间信息传递方式react同级组件之间传值 • 父...

  • (二)React 拆分组件与组件之间的传值

    主要代码:一、TodoList.jsx 二、TodoItem.jsx 总结: 1.父传子:通过标签上的属性的形式传...

  • 组件之间的传值

    组件之间的传值,包括父子组件传值,兄弟组件之间的传值,其中父子组件包括父组件向子组件传值和子组件向父组件传值,现在...

  • vue 面试

    组件之间的传值? 1.父组件与子组件传值 父组件通过标签上面定义传值子组件通过props方法接受数据 2.子组件向...

  • 组件与组件、页面之间的通信

    一、props传值 props传值在WePY中属于父组件与子组件之间(包括页面与其子组件之间)传值的一种机制,包括...

  • react-父子组件间通信

    React-父子组件间通信 父组件传 值 给子组件, 传 方法 给子组件 子组件接收 值 ,触发父组件的 方法

  • Vue.js 父子组件传值 . 兄弟组件传值

    概述 vue中组件之间的传值传值情况主要有以下三种 父组件向子组件传值子组件向父组件传值兄弟组件之间相互传值或者是...

  • vue2.0小结

    父组件与子组件之间的通信 父组件传值给子组件,通过props 子组件传值给父组件,通过$emit 如果在父组件想在...

  • react组件传值的几种方式

    react 组件传值一、父组件传给子组件父组件通过props传递给子组件; 二、子组件传给父组件父组件通过prop...

网友评论

      本文标题:(二)React 拆分组件与组件之间的传值

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