如何在另一个组件中使用ref in native native?

问题描述 投票:0回答:2

我在我的应用程序中使用了反应原生的mpaboxgl。

import MapboxGL from "@mapbox/react-native-mapbox-gl";


<MapboxGL.MapView
  logoEnabled={false}
  attributionEnabled={false}
  ref={(e) => { this.oMap = e }}
  zoomLevel={6}
  centerCoordinate={[54.0, 24.0]}> 
<MapboxGL.MapView> 

如何在另一个组件中使用oMap?所以我可以从其他组件/页面执行类似开/关的操作。

reactjs react-native react-native-maps
2个回答
3
投票

更新:

使用一个可行的全局变量。

ref={ref=>{
   global.input=ref;
   }}

现在你可以在这个屏幕后的应用程序的任何地方使用global.input.focus()


这是一个实现这个目的的例子:https://snack.expo.io/ryJk3hFKN

你可以创建一个返回该组件的ref的函数。 并将该函数作为其他组件中的道具传递

import * as React from 'react';
import { Text, View, StyleSheet, TextInput, TouchableOpacity } from 'react-native';

export default class App extends React.Component {
  getInputRef = () => this.input;

  render() {
    return (
      <View style={styles.container}>
        <TextInput
          ref={ref => {
            this.input = ref;
          }}
          placeholder="Hi there"
        />
        <SecondComp getInputRef={this.getInputRef} />
      </View>
    );
  }
}

class SecondComp extends React.Component {
  render() {
    return (
      <TouchableOpacity
        onPress={() => {
          this.props.getInputRef().focus();
        }}>
        <Text>click to Focus TextInput from the other component</Text>
      </TouchableOpacity>
    );
  }
}

const styles = StyleSheet.create({
  container: {
    flex: 1,
    justifyContent: 'space-around',
    backgroundColor: '#ecf0f1',
    padding: 8,
  },
});

0
投票

尝试将它作为prop传递给你想要使用refs的组件。例如。

<SecondComponent refOfFirstComponent = this.refs.oMap/>

并在SecondComponent中使用它像这样:

this.props.refOfFirstComponent.doSomething();
© www.soinside.com 2019 - 2024. All rights reserved.