|
@@ -226,7 +226,7 @@ public class ExportExamStudentScore {
|
|
} else {
|
|
} else {
|
|
// 主观题默认不设置“作答”列
|
|
// 主观题默认不设置“作答”列
|
|
if (needSubjective) {
|
|
if (needSubjective) {
|
|
- curDynamicColumnValues.add(Jsoup.clean(question.getStudentAnswer() != null ? question.getStudentAnswer() : "", Safelist.relaxed()));
|
|
|
|
|
|
+ curDynamicColumnValues.add(Jsoup.clean(question.getStudentAnswer() != null ? question.getStudentAnswer() : "", Safelist.simpleText()));
|
|
|
|
|
|
Double studentScore = subjectiveQuestionScores.get(question.getMainNumber() + "-" + question.getOrder());
|
|
Double studentScore = subjectiveQuestionScores.get(question.getMainNumber() + "-" + question.getOrder());
|
|
curDynamicColumnValues.add(studentScore != null ? studentScore.toString() : "0");
|
|
curDynamicColumnValues.add(studentScore != null ? studentScore.toString() : "0");
|