Я создаю приложение на реагирующем языке. Я столкнулся с проблемой в приложении. Я получаю данные с сервера и обновляю данные о состоянии. Данные с сервера регистрируются в консоли без каких-либо ошибок. Тем не менее, после установки состояния, ответная реакция не перерисовывает мои вопросы на экране. Но когда я сохраняю свой проект из редактора кода и перезагружаю экспо, данные (вопросы) видны на экране. Я не могу найти решение или откуда происходит ошибка. Надеюсь, что ниже код и gif продемонстрируют мою проблему. У меня есть некоторые стили из кода, чтобы уменьшить длину, но код по-прежнему длинный. Ссылку на оригинальный файл (код) можно найти здесь Ссылка на код
import React, { useEffect, useState } from "react";
import MultipleChoice from "react-native-multiple-choice-picker";
import {
View,
Text,
(other imports),
Button,
} from "react-native";
import LoadingScreen from "../Loading";
import firebase from "../../config/firebase";
import SERVER from "../../config/variable";
const Solution = ({ route, navigation }) => {
const [isLoading, setIsLoading] = useState(false);
const [questionData, setQuestionData] = useState([]);
const [correctAnswer, setCorrectAnswer] = useState([]);
const [wrongAnswer, setWrongAnswer] = useState([]);
const [notAttempted, setNotAttempted] = useState([]);
const [questionCount, setQuestionCount] = useState(0);
const [allQuestion, setAllQuestion] = useState([]);
const { examid } = route.params;
const fetchSolution = async () => {
setIsLoading(true);
try {
const response = await fetch(`${SERVER}admin/get/result-for-user`, {
method: "POST",
headers: {
Accept: "Application/json",
"Content-Type": "Application/json",
},
body: JSON.stringify({
email: firebase.auth().currentUser.email,
examid,
}),
});
const responseData = await response.json();
setQuestionData(responseData.data);
setCorrectAnswer(await JSON.parse(responseData.result[0].correctAnsArr));
const data1 = JSON.parse(responseData.result[0].wrongAnsArr);
setWrongAnswer(data1);
setNotAttempted(await JSON.parse(responseData.result[0].notAttemtedArr));
const datafinal = await updateQuestion();
setAllQuestion(datafinal);
} catch (error) {
console.log(error);
Alert.alert("Server Error");
}
setIsLoading(false);
};
const updateQuestion = () => {
var correctAnsArr = [];
var wrongAnsArr = [];
var notAttemtedArr = [];
for (let i = 0; i < correctAnswer.length; i++) {
for (let j = 0; j < questionData.length; j++) {
if (correctAnswer[i].questionId === questionData[j].id) {
questionData[j].selectedOption = correctAnswer[i].selectedOption;
correctAnsArr.push(questionData[j]);
}
}
}
for (let i = 0; i < wrongAnswer.length; i++) {
for (let j = 0; j < questionData.length; j++) {
if (wrongAnswer[i].questionId === questionData[j].id) {
questionData[j].selectedOption = wrongAnswer[i].selectedOption;
wrongAnsArr.push(questionData[j]);
}
}
}
for (let i = 0; i < notAttempted.length; i++) {
for (let j = 0; j < questionData.length; j++) {
if (notAttempted[i].questionId === questionData[j].id) {
questionData[j].selectedOption = notAttempted[i].selectedOption;
notAttemtedArr.push(questionData[j]);
}
}
}
return [...correctAnsArr, ...wrongAnsArr, ...notAttemtedArr];
};
useEffect(() => {
fetchSolution();
}, []);
const RenderQuestion = () => {
return (
<View>
<View>
{allQuestion.length > 0 ? (
<View
key={allQuestion[0].id}
style={{
width: Dimensions.get("window").width,
}}
>
<View style={{ margin: 10 }}>
<Text style={{ fontSize: 16 }}>
Question {questionCount + 1} of {allQuestion.length}
</Text>
</View>
{allQuestion[questionCount].isQuestionImage === "1" ? (
<View
style={{
width: Dimensions.get("window").width,
display: "flex",
flex: 1,
justifyContent: "center",
alignItems: "center",
}}
>
<Image
style={{
height: Dimensions.get("window").height * 0.5,
width: Dimensions.get("window").width * 0.8,
}}
source={{
uri: allQuestion[questionCount].questionFile,
}}
/>
</View>
) : (
<View>
<Text style={{ fontSize: 35, margin: 15 }}>
{allQuestion[questionCount].questionText}
</Text>
</View>
)}
<RenderOption />
</View>
) : (
<View>
<Text>No Data</Text>
</View>
)}
</View>
</View>
);
};
const RenderOption = () => {
return (
<View>
{allQuestion.length > 0 ? (
<View>
{allQuestion[questionCount].isOptionImage === "1" ? (
<MultipleChoice
direction={"column"}
chosenIndex={allQuestion[questionCount].selectedOption}
choices={[
<Image
style={{
height: Dimensions.get("window").height * 0.3,
width: Dimensions.get("window").width * 0.6,
}}
source={{
uri: allQuestion[questionCount].optionAFile,
}}
/>,
<Image
style={{
height: Dimensions.get("window").height * 0.3,
width: Dimensions.get("window").width * 0.6,
}}
source={{
uri: allQuestion[questionCount].optionBFile,
}}
/>,
<Image
style={{
height: Dimensions.get("window").height * 0.3,
width: Dimensions.get("window").width * 0.6,
}}
source={{
uri: allQuestion[questionCount].optionCFile,
}}
/>,
<Image
style={{
height: Dimensions.get("window").height * 0.3,
width: Dimensions.get("window").width * 0.6,
}}
source={{
uri: allQuestion[questionCount].optionDFile,
}}
/>,
]}
/>
) : (
<MultipleChoice
direction={"column"}
chosenIndex={allQuestion[questionCount].selectedOption}
choices={[
<Text>
{allQuestion[questionCount].optionAText}
</Text>,
<Text>
{allQuestion[questionCount].optionBText}
</Text>,
<Text>
{allQuestion[questionCount].optionCText}
</Text>,
<Text>
{allQuestion[questionCount].optionDText}
</Text>,
]}
/>
)}
</View>
) : (
<View></View>
)}
</View>
);
};
const Renderbutton = () => {
return (
<View>
{questionCount != 0 ? (
<View>
<Button
color="#f9a602"
title="Prev"
onPress={() => {
setQuestionCount(() => questionCount - 1);
}}
/>
</View>
) : null}
{questionCount + 1 < allQuestion.length ? (
<View>
<Button
title="Next"
onPress={() => {
setQuestionCount(() => questionCount + 1);
}}
/>
</View>
) : null}
<View>
<Button
color="red"
title="Finish"
onPress={() => navigation.navigate("ResultList")}
/>
</View>
</View>
);
};
if (isLoading) {
return <LoadingScreen />;
}
return (
<SafeAreaView style={{ display: "flex", flex: 1 }}>
<ImageBackground
source={require("../../images/signup_screen.jpg")}
style={{ flex: 1, resizeMode: "cover" }}
>
<View>
<ScrollView>
<RenderQuestion />
<Renderbutton />
</ScrollView>
</View>
</ImageBackground>
</SafeAreaView>
);
};
export default Solution;