educoder/app/views/exercises/_question_scores.json.jbuilder

6 lines
220 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

json.array! question_scores do |q|
json.ques_id q[:q_id]
json.ques_position q[:q_position]
json.answer_status q[:stand_status] #答案状态,1为正确0为错误/未答
json.user_score q[:user_score]
end