如您所见,我有三个组件,第一个是Header,我想在其中获取arr
第二个组件是CardBox,我在其中创建了一个arr
我是新来的,据我所知我已经试过了
import React from 'react';
import { View, Text } from 'react-native';
const Header = () => {
return (
<View>
<Text>Header</Text>
</View>
);
};
const CardBox = () => {
const arr = ["A", "B", "C"]
return (
<View>
<Text>CardBox</Text>
<Text>arr in CardBox{arr}</Text>
</View>
);
};
const App = ({arr}) => {
return (
<View>
<Text>arr in Home {arr}</Text>
<View>
<Header />
</View>
<View>
<CardBox arr={arr}/>
</View>
</View>
);
};
export default App;
1条答案
按热度按时间9wbgstp71#
你可以通过在你的父组件中创建数组并将该数组作为 prop 传递给你的子组件来实现这一点。
希望你得到答案了。