当前位置: 首页 > 知识库问答 >
问题:

React,ES6-GetInitialState是在普通JavaScript类上定义的

景子安
2023-03-14

我有以下组件(radioother.jsx):

 'use strict';

 //module.exports = <-- omitted in update

   class RadioOther extends React.Component {

     // omitted in update 
     // getInitialState() {
     //    propTypes: {
     //        name: React.PropTypes.string.isRequired
     //    }
     //    return {
     //       otherChecked: false
     //   }
     // }

     componentDidUpdate(prevProps, prevState) {
         var otherRadBtn = this.refs.otherRadBtn.getDOMNode();

         if (prevState.otherChecked !== otherRadBtn.checked) {
             console.log('Other radio btn clicked.')
             this.setState({
                 otherChecked: otherRadBtn.checked,
             });
         }
     }

     onRadChange(e) {
         var input = e.target;
         this.setState({
             otherChecked: input.checked
         });
     }

     render() {
         return (
             <div>
                 <p className="form-group radio">
                     <label>
                         <input type="radio"
                                ref="otherRadBtn"
                                onChange={this.onRadChange}
                                name={this.props.name}
                                value="other"/>
                         Other
                     </label>
                     {this.state.otherChecked ?
                         (<label className="form-inline">
                             Please Specify:
                             <input
                                 placeholder="Please Specify"
                                 type="text"
                                 name="referrer_other"
                                 />
                         </label>)
                         :
                         ('')
                     }
                 </p>
             </div>
         )
     }
 };

>

  • 有人能看到错误在哪里吗?我知道这是由于DOM中的条件语句,但显然我没有正确声明它的初始值?

    我应该将getInitialState设置为静态吗

    如果getInitialState不正确,声明我的proptypes的合适位置在哪里?

       RadioOther.propTypes = {
           name: React.PropTypes.string,
           other: React.PropTypes.bool,
           options: React.PropTypes.array }
    
       module.exports = RadioOther;
    
         constructor(props) {
             this.state = {
                 otherChecked: false,
             };
         }
    
         constructor(props) {
         super(props);
             this.state = {
                 otherChecked: false,
             };
         }
    

    未捕获的TypeError:无法读取未定义的属性“props”

  • 共有1个答案

    燕光熙
    2023-03-14
    • GetInitialState不在ES6类中使用。而是在构造函数中指定this.state.
    • proptypes应该是静态类变量或分配给类,而不应该分配给组件实例。
    • 成员方法在ES6类中不是“自动绑定”的。对于用作回调的方法,可以使用类属性初始化器,也可以在构造函数中分配绑定实例。
    export default class RadioOther extends React.Component {
    
      static propTypes = {
        name: React.PropTypes.string.isRequired,
      };
    
      constructor(props) {
        super(props);
        this.state = {
          otherChecked: false,
        };
      }
    
      // Class property initializer. `this` will be the instance when
      // the function is called.
      onRadChange = () => {
        ...
      };
    
      ...
    
    }
    

    请参阅React关于ES6类的文档:将函数转换为类

     类似资料: