您好,我想将数据发布到本地计算机上的json文件中。这是我的json文件声明。
import data_local from "../data/StudentList.json";
这是我的json数据:
[{
"Roll": 1101,
"name": "Israt Jerin",
"Status": "P"
},
{
"Roll": 1102,
"name": "Rifat Murtuza",
"Status": "P"
},
{
"Roll": 1103,
"name": "Nabil Kaysar",
"Status": "P"
}]
在这里,我想发布用于将状态P修改为A的数据。该项目是简单的出勤管理系统。 这是我的React本机代码,用于在列表中显示。
<View style={{ flex: 1, flexDirection: "column" }}>
<Text>Student Attendance System</Text>
<FlatList
data={data_local}
showsVerticalScrollIndicator={false}
renderItem={({ item }) => (
<View>
<Text> {item.name}</Text>
<Text> {item.Roll}</Text>
<RadioForm
radio_props={radio_props}
initial={0}
onPress={value => {
this.setState({ value: value });
}}
/>
</View>
我如何在此处添加帖子以更新特定学生的状态,假设P预先为A。谢谢