Как я могу получить доступ к переменной из другого файла JS в реагировать на родной - PullRequest
0 голосов
/ 02 марта 2019

Я новичок в реакции на родную.Это часть App.js

<Button
    title="LOGIN"
    onPress={() => 
        {
         {{this.componentDidMount(this.state.city)}}
        }
    }
/>

Я хочу отправить "this.state.city" в мой другой js-файл "Form.js".

И это 'Form.js '

import React from 'react';
import { FlatList, ActivityIndicator, Text, View  } from 'react-native';

class Form extends React.Component {
  constructor(props){
    super(props);
    this.state ={ isLoading: true}
  }
  componentDidMount(){
    const api_key="there_is_an_api_key";
    const city="ankara"
    // I want that variable here

Спасибо за помощь

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...