获取input值-react

  1. 类组件中的受控组件
export default class ToDoList extends Component {
  // 存储数据 
  state = {
    val: ''
  }
  
  showVal = () => {
    console.log(this.state.val);
    // 修改数据得使用 setState
    this.setState({ val: '' })
  }
  
   render() {
    const { val } = this.state;
        return (
        <div>
          <input
            type="text"
            value={val}
            // 必填
            onChange={e => this.setState({ val: e.target.value })}
            placeholder='类组件中的受控组件' />
          <button
            onClick={this.showVal}
          >
            类组件中的受控组件
          </button>
        </div>
    )
  }
}
  1. 类组件中的不受控组件
    <input
     type="text"
    // 存储到 this 的属性上
    ref={node => this.inp = node}
    placeholder='类组件中的不受控组件' />
    <button onClick={this.showValNo}>
        类组件中的不受控组件
    </button>
  1. 函数组件中的受控组件
import React, { useState } from 'react';
export default function Cart() {
  const [valSk, useValSK] = useState('');
  function toShowSK() {
    console.log('valSk', valSk);
    useValSK('');
  }
   return (
      
useValSK(e.target.value)} placeholder='函数组件中的受控组件' />
) }
  1. 函数组件中的ref
import React, { useState, useRef } from 'react'
export default function Cart() {
  const inputRef = useRef();
  function toShowSKNo() {
    console.log(' inputRef.current.value', inputRef.current.value);
    inputRef.current.value = '';
  }
  xxxx
     <div>
        <input
          type="text"
          // 不能以下写法
          // ref={inputAAA => this.input = inputAAA}
          ref={inputRef}
          placeholder='函数组件中的ref' />
        <button onClick={toShowSKNo}>函数组件中的ref</button>
      </div>

你可能感兴趣的:(react.js,javascript,前端)