开发者问题收集

未捕获的类型错误:无法读取 REACT JS 中未定义的属性“值”

2016-12-09
41266

我正在创建一个登录表单,使用 REACT JS 作为前端,PHP 作为后端。我正在尝试获取输入值。代码如下:

import React, { Component} from 'react';
import ReactDOM from 'react-dom';
import {Button, IconButton} from 'react-toolbox/lib/button';
import Input from 'react-toolbox/lib/input';

export default class Login extends React.Component {

constructor() {
    super();
    this.state = {email: ''};
    this.state = {password: ''};
    this.onSubmit = this.onSubmit.bind(this);
    this.handleEmailChange = this.handleEmailChange.bind(this);
    this.handlePasswordChange = this.handlePasswordChange.bind(this);
}
handleEmailChange(e) {
    this.setState({email: e.target.value});
}
handlePasswordChange(e) {
    this.setState({password: e.target.value});
}
onSubmit() {
    fetch('http://xyz/check-login', {
      method: 'POST',
      headers: {
        'Accept': 'application/json',
        'Content-Type': 'application/json',
      },
      body: JSON.stringify({
        email: this.state.email,
        password: this.state.password,
      })
    })
}

表单如下:

<form name="Login">
<Input type="text" name="email" value={this.state.email} placeholder="Email Id" className="form-control" onChange={this.handleEmailChange} />
<Input name="password" value={this.state.password} placeholder="Password" type="password" className="form-control m-b-10" onChange={this.handlePasswordChange} />   
<Button type="button" className="m-t-20 orange" label="Sign in " onClick={this.onSubmit} /> 
</form>

但出现以下错误:

Uncaught TypeError: Cannot read property 'value' of undefined

我正在使用 react-toolbox。因此,我使用来自 https://github.com/react-toolbox/react-toolbox/blob/dev/components/input/Input.js 的组件以及来自 https://github.com/react-toolbox/react-toolbox/blob/dev/components/button/Button.js 的组件。

3个回答

首先, <Input ..../> 和 <Button .../> 是什么?它们是您的组件还是仅仅是表单输入字段?

我认为它们只是表单字段,因此它们需要小写 <input ..../> 、<button .../>

尝试在渲染中绑定您的函数,例如: this.functionName.bind(this)

这是一个有效的代码:

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

      this.state = {
          email: '',
          password: '',
      };
    }

    handleEmailChange(e) {
        this.setState({email: e.target.value});
    }
    handlePasswordChange(e) {
        this.setState({password: e.target.value});
    }


    render(){
        return (
        <div>
            <form name="Login">
              <input type="text" name="email" value={this.state.email} placeholder="Email Id" className="form-control" onChange={this.handleEmailChange.bind(this)} />
              <input name="password" value={this.state.password} placeholder="Password" type="password" className="form-control m-b-10" onChange={this.handlePasswordChange.bind(this)} />   
              <button type="button" className="m-t-20 orange" label="Sign in " onClick={this.onSubmit}>Sign in</button> 
          </form>
        </div>
      )
    }
}

React.render(<Test />, document.getElementById('container'));

这里是小提琴。

更新

我在 这里 测试了它:

 constructor(props){
    super(props);

    this.state = {
            name: '',
        email: ''
    }
  }

  handleChange(name, value){
    let state = this.state;
    state[name] = value;
    this.setState({state});

  }

  render () {
    return (
      <section>
        <Input type='text' label='Name' name='name' value={this.state.name} onChange={this.handleChange.bind(this, 'name')} maxLength={16} />
        <Input type='email' label='Email address' icon='email' value={this.state.email} onChange={this.handleChange.bind(this, 'email')} />
      </section>
    );
  }

我不确定它是如何工作的,但它将名称和值作为参数传递给 handleChange 函数,因此,您可以获得值作为第二个参数。您不需要事件。

Boky
2016-12-09

首先将构造函数中的 this.state 更改为单个 - this.state = {emai:'',password:''},然后尝试在构造函数中绑定 handleEmailChangehandlePasswordChange ,您需要将 this 直接设置为输入,

更新

或者如果 InputButton 是组件,您需要在其中实现 changeMethod 和 onChange 事件,并通过回调将值发送回组件 Login

工作原理 -

 class Input extends React.Component{
            constructor(props){
                super(props);
                this.state= {
                    value : this.props.value
                }
            }
            componentWillReceiveProps(nextProps){
                 this.setState({
                      value: nextProps.value,
                  })
            }

            render(){
                return(
                    <input onChange={this.handleChangeValue.bind(this)} type="text" name={this.props.name} value={this.state.value} placeholder={this.props.placeholder} className={**just class name or send via props too**}  />
                )
            }
            handleChangeValue(e){
                this.setState({value:e.target.value});
                this.props.changeValue(e.target.value); 
            }
  }
        
        class Login extends React.Component{
            constructor(props){
                super(props);
                this.state= {
                    emailValue : '',
                    passwordValue: '',
                    ...
                }
            }
            render(){
                return(
                      <div>
                        <Input type="text" name='email' value={this.state.emailValue} placeholder={'Write email'} className='someName' changeValue={this.changeEmailValue.bind(this)} />
                        <Input type="text" name='password' value={this.state.passwordValue} placeholder={'Write password'} className='someName' changeValue={this.changePasswordValue.bind(this)} /> 
                     
                      </div>

                    )
               }
            changeEmailValue(value){
                this.setState({emailValue:value});
            }
        
            changePasswordValue(value){
                this.setState({passwordValue:value});
            }
        }
Lukáš Unzeitig
2016-12-09

由于您使用的是自定义组件 <Input/> ,因此该组件所具有的任何特殊代码都可能抽象出从内置组件 <input/> 传递的默认事件。 (请注意小写的“i”)因此,也许您需要它来读取:

handleEmailChange(value) {
    this.setState({email: value});
}
handlePasswordChange(value) {
    this.setState({password: value});
}

无论如何,修复可能是 onChange 没有返回事件,而是返回您没有预料到的其他值。

Rob Lynch
2016-12-09