import React,{ Component } from "react"; import {Checkbox,Radio, Input} from "antd"; import {markdownToHTML, MarkdownToHtml} from 'educoder' import QuillForEditor from "../../../../common/quillForEditor"; 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 Multiple extends Component{ constructor(props){ super(props); } saveId=(value)=>{ let question_id=this.props.questionType.question_id; let url=`/exercise_questions/${question_id}/exercise_answers.json`; let {index}=this.props; axios.post((url),{ exercise_choice_id:value }).then((result)=>{ if(result.status==200){ let k=0; if(value.length > 0 ){ k=1; }else{ k=0; } this.props.changeOption && this.props.changeOption(index,value); this.props.changeQuestionStatus && this.props.changeQuestionStatus(parseInt(this.props.questionType.q_position)-1,k); } }).catch((error)=>{ console.log(error); }) } render(){ let { questionType , exercise, user_exercise_status, is_md }=this.props let isStudent =this.props.isStudent(); console.log(questionType); return(
参考答案: {questionType.standard_answer.map((i,k)=>{ return( {tagArray[parseInt(i)-1]} ) }) }
}