您好,我想将数据发布到位于本地计算机上的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"
}]
在这里,我可以获取其余的代码以显示在Flatlist中
<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>
我的问题是如何将JSON数据发布到“状态”“ p”到“ A”的更新列中。您的帮助将非常可观。预先感谢。