如何在 React-Native 中导出和使用你的自定义类或函数?
我创建了一个名为">customdata.js"的文件,其中包含一个返回数组数据的函数。当我从该文件导入函数时,我无法检索返回的值。它只在控制台日志中返回 [函数:函数名称]
这是我下面的代码:
自定义数据.js
export function clienList(){
let clients = [
'D4 Soweto',
'Road Freight Provident Fund',
'Internal Cafe'
];
return clients;
}
行.js
//import from customdata
import {clienList} from './customdata';
//ListView
const elems = ['something'];
const source = new ListView.DataSource({
rowHasChanged: (r1, r2) => r1 !== r2
});
export default class Row extends React.Component{
constructor(props){
super(props);
this.state = {
dataSource: source.cloneWithRows(elems),
pickerValue:'Sonke'
};
};
render() {
console.log(clienList);
我的控制台日志
02-20 12:21:30.853 2844 3730 I ReactNativeJS: [功能: clienList]
只需调用该函数即可。正如您在控制台日志中看到的那样,您正在导入函数,为了使函数返回一个值,您需要先调用它clienList()
:
import { clienList } from './customdata';
clienList(); // this will return the value
clienList // this will return the function