비슷한 질문이 있지만 여러 기능을 가진 파일을 만들지 못했습니다. 방법이 이미 구식인지 RN이 매우 빠르게 발전하고 있는지 확실하지 않습니다. 반응 네이티브에서 전역 도우미 기능을 만드는 방법은 무엇입니까?
나는 React Native를 처음 사용합니다.
내가하고 싶은 일은 많은 재사용 가능한 함수로 가득 찬 js 파일을 만든 다음 구성 요소에서 가져 와서 호출하는 것입니다.
내가 지금까지 한 일은 어리석은 것처럼 보일지 모르지만 여기에 그렇게하도록 요청할 것입니다.
클래스 이름 Chandu를 만들어서 다음과 같이 내보냈습니다.
'use strict';
import React, { Component } from 'react';
import {
AppRegistry,
Text,
TextInput,
View
} from 'react-native';
export default class Chandu extends Component {
constructor(props){
super(props);
this.papoy = {
a : 'aaa'
},
this.helloBandu = function(){
console.log('Hello Bandu');
},
}
helloChandu(){
console.log('Hello Chandu');
}
}
그런 다음 필요한 구성 요소로 가져옵니다.
import Chandu from './chandu';
그리고 이렇게 불러
console.log(Chandu);
console.log(Chandu.helloChandu);
console.log(Chandu.helloBandu);
console.log(Chandu.papoy);
작동하는 유일한 것은 첫 번째 console.log였습니다. 즉, 올바른 경로를 가져오고 있지만 다른 경로는 가져 오지 않습니다.
이 작업을 수행하는 올바른 방법은 무엇입니까?