如何在 react-native 函数组件中将获取数据设置为文本字段
Posted
技术标签:
【中文标题】如何在 react-native 函数组件中将获取数据设置为文本字段【英文标题】:How to set fetch data to text field in react-native function component 【发布时间】:2021-09-20 19:49:34 【问题描述】:我正在学习 react-native,并且有一个关于获取数据并将它们传递给文本组件的问题。 我从我的 node.js 后端获取了我的数据,但不知道如何将这些数据传递给组件。以下是我目前尝试过的代码。
const TableView = () =>
const [details, setDetails] = useState('');
const getUserData = async () =>
fetch('https://----.herokuapp.com/getIncomePerUser',
method: 'post',
headers: 'Content-Type': 'application/json',
body: JSON.stringify(
email: data,
month: value,
),
)
.then(response => response.json())
.then(response =>
console.log('Test');
console.log(response);
const array = response;
for (const i of array)
const total = i.total;
setDetails(total);
console.log(total);
)
.catch(err =>
console.log(err);
);
);
;
useEffect(() =>
getUserData();
, []);
return (
<Text Value=details></Text> //I need to set my fetch data this text component
)
【问题讨论】:
<Text>details</Text>
在Text
中没有value
【参考方案1】:
如果您有一个值数组并且想要显示它们,您可以使用:
const TableView = () =>
const [details, setDetails] = useState('');
const getUserData = async () =>
fetch('https://----.herokuapp.com/getIncomePerUser',
method: 'post',
headers: 'Content-Type': 'application/json',
body: JSON.stringify(
email: data,
month: value,
),
)
.then(response => response.json())
.then(response =>
setDetails(response.map(r => r.total));
)
.catch(err =>
console.log(err);
);
);
;
useEffect(() =>
getUserData();
, []);
return (<>
details.map((d, i) => <Text key=i>d</Text>)
</>)
如果您只有一个值,只需将您的文本组件替换为:
<Text>details</Text>
【讨论】:
如果“details”是一个对象,我想访问该对象内的另一个字段怎么办?以上是关于如何在 react-native 函数组件中将获取数据设置为文本字段的主要内容,如果未能解决你的问题,请参考以下文章