import React,{ Component } from "react"; import {Checkbox,Radio, Input} from "antd"; import {markdownToHTML, MarkdownToHtml} from 'educoder' import axios from 'axios' const tagArray = [ 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z' ] class single extends Component{ constructor(props){ super(props); } changeItem=(e)=>{ let choiceId=e.target.value; let question_id=this.props.questionType.question_id; let {index}=this.props; let url=`/exercise_questions/${question_id}/exercise_answers.json`; axios.post((url),{ exercise_choice_id:choiceId }).then((result)=>{ if(result){ this.props.changeOption && this.props.changeOption(index,[choiceId]); this.props.changeQuestionStatus && this.props.changeQuestionStatus(parseInt(this.props.questionType.q_position)-1,1); } }).catch((error)=>{ console.log(error); }) } render(){ let { questionType , exercise, user_exercise_status }=this.props let isStudent =this.props.isStudent(); let isJudge = questionType.question_type == 2 return(
参考答案: {questionType.standard_answer.map((i,k)=>{ return( {tagArray[parseInt(i)-1]} ) }) }
}