当前位置:  开发笔记 > 编程语言 > 正文

React,Binding输入值

如何解决《React,Binding输入值》经验,为你挑选了1个好方法。

我在绑定输入的值时遇到了一些问题,我已经在我的应用程序的另一个组件上完成了它并且工作正常,但不知怎的,我无法让它在另一个组件上工作.我只收到第一个字母而不是全文

这是我的组成部分

class Post extends Component {

  constructor(props) {
    super(props);
    this.state = {
      post: this.props.data,
      comment: ''
    }
    Post.context = this;
  }
render() {

      
}
 handleChange(e) {
    Post.context.setState({comment: e.target.value});
}
}

我也尝试使用React网站上的一个例子,但结果相同:

 render() {
     var valueLink = {
      value: this.state.comment,
      requestChange: this.handleChange
    };
 render() {
    
          
    }
     handleChange(newValue) {
        Post.context.setState({comment: newValue});
    }
    }

有人有想法,为什么会这样?



1> Alexander T...:

中,必须用inputbutton元素(例如DIV),组分只能有一个根元素.

您可以.bind在我的示例中使用like,并避免使用Post.context = this;

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

    this.state = {
      post: this.props.data,
      comment: ''
    };
  }

  render() {
    return 
} handleClick(postId, e) { console.log( postId ); console.log( this.state.comment ); } handleChange(e) { this.setState({ comment: e.target.value }); } }

Example

注意: React 16.*包含新功能 - Fragments允许跳过其他根元素.

render() {
  return (
    <>
      

      

推荐阅读
TXCWB_523
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有