React

React 总结 - 基础篇

2019-06-24  本文已影响0人  zz77zz

React编写简书项目

这是看慕课网上的React课程做的总结笔记

MDN上的js教程 基础需打牢
重新介绍 JavaScript(JS 教程)

环境搭建


npm install -g create-react-app
create-react-app my-app

cd my-app
npm start

项目如果安装失败 具体请bing或者谷歌 又或者网络问题 可以设置npm淘宝源

npm config set registry https://registry.npm.taobao.org
-- 配置后可通过下面方式来验证是否成功
npm config get registry
项目运行成功

有两个文件要特殊提一下

编写Todolist

需提前了解

vscode 安装jsx 语法糖插件

创建todolist.js 组件
index.js 入口文件引入 todolist组件

todolist组件代码

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

class Todolist extends Component {
  constructor(props) {
    super(props);
    this.state = {
      inputValue: '',
      list: ['学英语', '写代码', '把妹']
    }
  }

  render() {
    return (
      <Fragment>

        <div>
          <label htmlFor="insert" style={{marginRight:20+'px'}}>输入内容</label>
          <input id="insert" className="input" placeholder="请输入今日待办事项" value={this.state.inputValue} onChange={this.handleChange.bind(this)} />
          <button onClick={this.handleClick.bind(this)}>submit</button>
        </div>
            {/*
                如果需要在jsx里设置转义过后的 比如h1 标签 h2标签 span标签内容  就用到dangerouslySetInnerHTML
                <ul>
                  {
                    this.state.list.map((item,index) =>{
                      return <li key={index} onClick={this.handleDelete.bind(this,index)} dangerouslySetInnerHTML={{__html: item}}></li>
                    })
                  }
                </ul>
              */}
        <ul>
          {
            this.state.list.map((item, index) => {
              return <li key={index} onClick={this.handleDelete.bind(this, index)}>{item}</li>
            })
          }
        </ul>

      </Fragment>
    )
  }


  handleChange(e) {
    this.setState({
      inputValue: e.target.value
    })
  }

  handleClick(e) {
    this.setState({
      list: [...this.state.list, this.state.inputValue],
      inputValue: ''
    })
  }

  handleDelete(index) {
    const _list = [...this.state.list]
    console.log(index)
    _list.splice(index, 1)
    this.setState({
      list: _list
    })
  }
}

export default Todolist;


创建style.css 并引入

注意以下几个问题

组件拆分 组件传值

这章是重点

把Todolist里的每个事项拆分成子组件 方法如下

父组件代码优化

import React, { Component, Fragment } from 'react';
import Todoitem from './todolist-Item';
import './style.css';

class Todolist extends Component {
  constructor(props) {
    super(props);
    this.state = {
      inputValue: '',
      list: ['学英语', '写代码', '把妹']
    }

    // 页面一开始就绑定好方法this指向
    this.handleClick= this.handleClick.bind(this)
    this.handleDelete = this.handleDelete.bind(this)
    this.handleChange = this.handleChange.bind(this)
  }

  render() {
    return (
      <Fragment>
        <div>
          <label htmlFor="insert" style={{marginRight:20+'px'}}>输入内容</label>
          <input 
            id="insert" 
            className="input" 
            placeholder="请输入今日待办事项" 
            value={this.state.inputValue} 
            onChange={this.handleChange} 
          />
          <button onClick={this.handleClick}>submit</button>
        </div>
        
        <ul>{this.getTodoItem()}</ul>
      </Fragment>
    )
  }

  getTodoItem(){
    return  this.state.list.map((item, index) => {
        return ( 
            <Todoitem 
              key={index}
              index={index} 
              content={item}
              deleteitem={this.handleDelete}
            />
        )
      })
  }

  handleChange(e) {
    const value = e.target.value
    //setState 可以写方法 并且返回一个对象  对象变成函数 最外侧把要更改的值 保存一下
    this.setState( 
      ()=> ({inputValue : value}) 
    )
    // this.setState({
    //   inputValue: e.target.value
    // })
  }

  handleClick(e) {
    this.setState((prevState)=>({
        list: [...prevState.list, prevState.inputValue],
        inputValue: ''
      })
    )
  }

  handleDelete(index) {
    // const _list = [...this.state.list]

    // console.log(index)
    // _list.splice(index, 1)
    // this.setState({
    //   list: _list
    // })
    this.setState(
      
      (prevState)=>{
        console.log(prevState)
        const _list = [...prevState.list]
        _list.splice(index, 1)
        return { list : _list }
      }
    )
  }
}

export default Todolist;

子组件代码优化

import React, { Component } from 'react';

class Todoitem extends Component {

    constructor(props){
        super(props)
        this.handleDelete = this.handleDelete.bind(this)
    }

    render() {
        const { content } = this.props
        return (
            <div onClick={this.handleDelete}>
                {content}
            </div>
        );
    }

    handleDelete(){
        console.log(this.props.index)
        const { deleteitem,index } = this.props
        deleteitem(index)
    }
}

export default Todoitem

引发一些思考

我觉得这是听到最舒服的部分 带进自己的思考 才理解了React出现的原因 之前在学习vue的过程中并没有感受到 估计是之前比较木讷

上一篇下一篇

猜你喜欢

热点阅读