gpt4 book ai didi

react-native - 使用 RxJS 捕获 React Native 上的点击事件

转载 作者:行者123 更新时间:2023-12-01 06:51:44 33 4
gpt4 key购买 nike

网上有很多例子,比如here ,展示了如何使用 RxJS 捕获网页中的点击事件。

我测试了这些示例,它们都可以正常工作,即使在 React.js 应用程序中也是如此,但它们不适用于 react 原生 应用程序,因为 React Native 应用程序没有 DOM。

有没有办法用 捕获点击事件? RxJS 使用 Rx.Observable.fromEvent react 原生 应用程序? (不是 React.js)

最佳答案

一种可能的解决方案是使用 Subject 在 OnPress 函数中执行此操作并在 ComponentDidMount 函数上订阅它,这里是一个快速示例(也可用 here )。希望它会有所帮助。

import { Subject } from 'rxjs';

class TestPage extends React.Component {
constructor(props) {
super(props);
this.subject = new Subject();
}

componentDidMount(){
this.subject.subscribe(data => console.log(data), err => console.error(err))
}

onPress =(item) => {
this.subject.next(item)
}

render() {
return (<View>
<Button onPress={this.onPress} />
</View>)
}
}

关于react-native - 使用 RxJS 捕获 React Native 上的点击事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49149372/

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