gpt4 book ai didi

reactjs - onclick 函数在 React Native 应用程序中不起作用

转载 作者:行者123 更新时间:2023-12-03 13:00:54 25 4
gpt4 key购买 nike

我是原生 react 新手。我编写了以下代码来在用户单击文本时调用函数。

var login = React.createClass({
openPopup: function(){
console.log("function called");
},
render: function(){
return (
<View onClick={this.openPopup}>
<Text>
Login
</Text>
</View>
);
}
});

上面的代码有什么问题吗?如果我单击登录文本,我不会在控制台中收到任何反馈。

编辑这个问题是 native 特定的。与 Stack Overflow 中的任何其他问题不重复。

最佳答案

试试这个-

<TouchableOpacity onPress={this.openPopup}> 
<View> <Text>...</Text> </View>
</TouchableOpacity>

关于reactjs - onclick 函数在 React Native 应用程序中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34543190/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com