当前位置:  开发笔记 > 程序员 > 正文

React Native onpress无法正常工作

如何解决《ReactNativeonpress无法正常工作》经验,为你挑选了1个好方法。

onRadioPressed似乎没有被称为 - 我做错了什么?我还需要获取"clicked"项中包含的文本.

我相信我可以得到它event.nativeEvent.text,对吗?

谢谢你的帮助.

class RadioBtn extends React.Component {
  constructor(props) {
    super(props);
    this.state = {

    };
  }

  onRadioPressed(event) {
    console.log('RADIOBUTTON PUSHED:');
  }

  render() {

    return (
        
            
                 this.onRadioPressed.bind(this)} underlayColor='#f1c40f'>
                    Left
                
            
            
                 this.onRadioPressed.bind(this)} underlayColor='#f1c40f'>
                    Right
                
            
        
    );
  }
}

小智.. 7

所以在这里:

 this.onRadioPressed.bind(this)} underlayColor='#f1c40f'>
    Left

首先onpress改为onPress.在这里,() => this.onRadioPressed.bind(this)您指定一个箭头函数,它返回另一个函数,this.onRadioPressed.bind(this)但您永远不会触发它.

正确的方法:

// You can do either this
 this.onRadioPressed()} underlayColor='#f1c40f'>
    Left


// Or you can do either this

    Left

我建议你查看这篇文章https://medium.com/@housecor/react-binding-patterns-5-approaches-for-handling-this-92c651b5af56#.irpdw9lh0



1> 小智..:

所以在这里:

 this.onRadioPressed.bind(this)} underlayColor='#f1c40f'>
    Left

首先onpress改为onPress.在这里,() => this.onRadioPressed.bind(this)您指定一个箭头函数,它返回另一个函数,this.onRadioPressed.bind(this)但您永远不会触发它.

正确的方法:

// You can do either this
 this.onRadioPressed()} underlayColor='#f1c40f'>
    Left


// Or you can do either this

    Left

我建议你查看这篇文章https://medium.com/@housecor/react-binding-patterns-5-approaches-for-handling-this-92c651b5af56#.irpdw9lh0

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