查询活动答题积分场景下的历史答题记录。
答题记录
请求方法:GET
是否鉴权:是
请求编码:Content-Type:application/x-www-form-urlencoded
响应编码:Content-Type:application/json;charset=UTF-8
请求地址:index/activity.exam/examList
请求参数:
参数名 | 参数类型 | 是否必填 | 参数说明 | 示例值 |
---|---|---|---|---|
uid | string | 是 | 活动id |
- 成功示例:
javascript
{
"data": [
{
"uid": "971a096c8f",
"title": "国庆节的意义是什么",
"option": [
{
"check": "A",
"title": "庆祝新中国成立",
"is_check": 1,
"image_url": "",
"video_url": "",
"is_select": 2
},
],
"second_title": "",
"type": 1,
"is_select": 2
},
],
"code": 100,
"msg": "请求成功"
}
参数名 | 参数类型 | 是否必有 | 参数说明 | 示例值 |
---|---|---|---|---|
uid | string | 是 | 试题id | |
title | string | 是 | 试题题干 | |
second_title | string | 是 | 试题二级题干 | |
type | int | 是 | 试题类型 | 1单选题2多选题3多选题4判断题5问答题 |
is_select | int | 是 | 选中状态 | 1选中2未选中 |
option.title | string | 是 | 选项标题 | |
option.check | string | 是 | 选项标签 | |
option.is_check | int | 是 | 是否为答案选项 | 1是2否 |
option.image_url | string | 是 | 选项图片地址 | |
option.video_url | string | 是 | 选项视频地址 | |
option.is_select | int | 是 | 选中状态 | 1选中2未选中 |
- 失败示例:
javascript
{
"code": 101,
"data": [],
"msg": "请求失败"
}