React 学习笔记

函数组件/类定义组件

使用普通的JavaScript函数即可定义一个React组件:

function MyComponent(props) {
    return <h1>Props value: {props.value}</h1>;
}

函数接受一个单一的props对象,返回值是React元素,这种方式就是函数定义组件,即组件是一个函数。使用ES6的Class也可以定义一个组件:

class MyComponent extends React.Component {
    render() {
        return <h1>Props value: {this.props.value}</h1>;
    }
}

组件的props与state

pros是一个组件的属性,是只读的,不可以对组件的属性进行写操作。state是一个组件的状态对象,包含了组件在不同生命周期的各种状态数据。注意以下几点:

  • 状态不可以直接更新,需要使用setState函数来更新
  • 状态只能在构造函数中初始化
  • 调用setState更新状态时,提供的对象会被合并到当前组件状态中
    • 独立更新
    • 浅合并

父组件通过设置子组件的props来向下传递数据,即数据是从上到下单向流动的。

事件处理

几个注意点:

  • return false不会阻止默认行为,需要使用以下方式:
function ActionLink(props) {
    function handleClick(e) {
        e.preventDefault();
        console.log('Link has been clicked');
    }

    return (
        <a href='#' onClick={handleClick}>
            Click me.
        </a>
    )
}
  • ES6的语法不会将类的方法默认绑定到this上,因此在绑定事件处理函数时需要在构造器中显式声明:
class Toggle extends Component {
    constructor(props) {
        super(props);
        this.state = {isToggleOn: true};

        this.handleClick = this.handleClick.bind(this);
    }

    handleClick(e) {
        this.setState(prevState => ({
            isToggleOn: !prevState.isToggleOn
        }));
    }

    render() {
        return (
            <button onClick={this.handleClick}>
                {this.state.isToggleOn ? 'ON' : 'OFF'}
            </button>
        )
    }
}

如果不想使用bind,则有两种语法可以支持:

//babel提供的属性初始化语法,适用于不传参数的监听函数
class Toggle extends Component {
    handleClick = (e) => {
        //...
    }
}
//绑定事件回调中的箭头函数
class Toggle extends Component {
    render() {
        return (
            <button onClick={ e => this.handleClick(e) }>
                {this.state.isToggleOn ? 'ON' : 'OFF'}
            </button>
        )
    }
}
  • 向事件函数传递其他参数并且使用到事件对象时,事件对象必须指定,并且要排在事件监听函数参数的最后:
class Popper extends Component {
    construtor(props) {
        super(props);
        this.state = {name: 'Michael Yan'}
    }

    popName(name, e) {
        e.preventDefault();
        console.log(name);
    }

    render() {
        // onClick也可以显式绑定:this.popName.bind(this, this.state.name)
        return(
            <div>
                <p>Welcome:</p>
                <a href='https://reactjs.org' onClick={e => this.popName(this.state.name, e)}
            </div>
        )
    }
}
  • 不使用事件对象时,两种方式都可以,例如:
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta http-equiv="X-UA-Compatible" content="ie=edge">
  <script src="https://unpkg.com/react/umd/react.development.js"></script>
  <script src="https://unpkg.com/react-dom/umd/react-dom.development.js"></script>
  <script src="https://unpkg.com/babel-standalone@6.15.0/babel.min.js"></script>
  <title>Document</title>
</head>
<body>
  <div id='root'></div>
  <script type="text/babel">
  function toCelsius(fahrenheit) {
    return (fahrenheit - 32) * 5 / 9;
  }

  function toFahrenheit(celsius) {
    return (celsius * 9 / 5) + 32;
  }

  function tryConvert(temperature, convert) {
    const input = parseFloat(temperature);
    if (Number.isNaN(input)) {
      return '';
    }
    const output = convert(input);
    const rounded = Math.round(output * 1000) / 1000;
    return rounded.toString();
  }

  function BoilingVerdict(props) {
    if(props.celsius >= 100){
      return <p>The water would boil.</p>;
    }
    return <p>The water would not boil.</p>;
  }

  const scaleNames = {
    c: 'Celsius',
    f: 'Fahrenheit'
  }

  class TemperatureInput extends React.Component {
    constructor(props) {
      super(props);
    }

    handleChange = e => {
      this.props.onTemperatureChange(e.target.value)
    }

    render() {
      const temperature = this.props.temperature;
      const scale = this.props.scale;
      return (
        <fieldset>
          <legend>Enter temperature in {scaleNames[scale]}:</legend>
          <input value={temperature}
                onChange={this.handleChange} />
        </fieldset>
      )
    }
  }

  class Calculator extends React.Component {
    constructor(props) {
      super(props);
      this.state = {temperature: '', scale: 'c'}
    }

    handleCelsiusChange(temperature) {
      this.setState({
        scale: 'c', temperature
      })
    }

    handleFahrenheitChange(temperature) {
      this.setState({
        scale: 'f', temperature
      })
    }

    render() {
      const scale = this.state.scale
      const temperature = this.state.temperature
      const celsius = scale === 'f' ? tryConvert(temperature, toCelsius) : temperature;
      const fahrenheit = scale === 'c' ? tryConvert(temperature, toFahrenheit) : temperature;

      return (
        <div>
          <TemperatureInput
            scale="c"
            temperature={celsius}
            onTemperatureChange={celsius => this.handleCelsiusChange(celsius)}
            />
          <TemperatureInput
            scale="f"
            temperature={fahrenheit}
            onTemperatureChange={fahrenheit => this.handleFahrenheitChange(fahrenheit)}
          />

          <BoilingVerdict celsius={parseFloat(celsius)} />
        </div>
      )
    }
  }

  ReactDOM.render(
    <Calculator />,
    document.getElementById('root')
  )
  </script>
</body>
</html>
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 205,033评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,725评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,473评论 0 338
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,846评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,848评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,691评论 1 282
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,053评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,700评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 42,856评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,676评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,787评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,430评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,034评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,990评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,218评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,174评论 2 352
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,526评论 2 343

推荐阅读更多精彩内容

  • 3. JSX JSX是对JavaScript语言的一个扩展语法, 用于生产React“元素”,建议在描述UI的时候...
    pixels阅读 2,804评论 0 24
  • 安装: 概述 React起源于FaceBook的内部项目,因为该公司对市场上所有的JavaScript MVC框架...
    姒沝無痕阅读 709评论 0 0
  • React 核心思想 —— 组件化React 将界面分成了一个个组件,通过组件的组合、嵌套构成页面。其中,组件可复...
    sylvia_yue阅读 1,041评论 1 2
  • Learn from React 官方文档 一、Rendering Elements 1. Rendering a...
    恰皮阅读 2,660评论 2 3
  • 学习目的 熟练使用 React,并能运用 React 做一个项目,了解 React 开发。 学习技巧,用学...
    _1633_阅读 513评论 0 1