- 认证中心
- 用户管理
- 公告功能
- 班级管理
- 错题本功能
- 题库管理
- 考试功能
- 证书功能
- 试题管理
- 成绩管理
- 答卷管理
- 刷题管理
- 考试记录
- 统计信息
用户主观题作答信息查询
开发中
GET
http://127.0.0.1:8080/api/answers/detail
请求参数
Body 参数application/json
userId
integer
答题人id
examId
integer
考试id
示例
{
"userId": 0,
"examId": 0
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request GET 'http://127.0.0.1:8080/api/answers/detail' \
--header 'Content-Type: application/json' \
--data-raw '{
"userId": 0,
"examId": 0
}'
返回响应
🟢200成功
application/json
Body
code
integer
响应码
data
object
响应内容
records
array [object {9}]
试卷细腻些
realName
string
用户姓名
msg
string
响应信息
示例
{
"code": 200,
"data": {
"records": [
{
"id": "98",
"content": "nulla enim",
"image": "http://dummyimage.com/400x400",
"sort": "Duis sed amet ex",
"options": [
{
"id": "54",
"content": "cillum anim",
"image": "http://dummyimage.com/400x400",
"answered": "nulla",
"short": "deserunt"
}
],
"answer": "quis enim mollit aliqua magna"
}
],
"realName": "与并但"
},
"msg": "fugiat ex dolore"
}
修改于 2024-04-29 05:38:35