提交试卷前汇总
开发中GET
/api/exams/collect/{id}前端计算未做题总数,并给用户提示还有多少题未做,未作答的试题题号标红
请求参数
Path 参数
id
integer
考试id
Header 参数
Authorization
string
token
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
code
integer
必需
data
array [object {7}]
必需
id
integer
试题id
content
string
题干
image
string
题干图片地址
sort
integer
排序
answered
integer
必需
是否回答,0未回答1已回答,用于标记未做试题
options
array [object {4}]
选项列表
answer
string
回答内容
msg
string
必需
示例
成功示例
{
"code": 200,
"data": [
{
"id": 10,
"content": "aliqua",
"image": "http://dummyimage.com/400x400",
"sort": 37,
"answered": 12,
"options'": [
{
"id": 58,
"content": "dolor",
"image": "http://dummyimage.com/400x400",
"sort": 11
}
],
"answer": "do minim adipisicing eiusmod"
}
],
"msg": ""
}
最后修改时间: 9 个月前