预览试卷
开发中
GET
/examPaper/paperPreview/4
请求参数
Authorization
在 Header 添加参数
Authorization
,其值为在 Bearer 之后拼接 Token示例:
Authorization: Bearer ********************
示例代码
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:9000/examPaper/paperPreview/4'
返回响应
🟢200成功
application/json
Body
successful
boolean
必需
code
integer
必需
message
string
必需
timestamp
string
必需
data
object
必需
id
string
试卷id
examPaperName
string
试卷名称
bigQuestionList
array [object {5}]
大题列表
示例
{
"successful": true,
"code": 0,
"message": "string",
"timestamp": "string",
"data": {
"id": "string",
"examPaperName": "string",
"bigQuestionList": [
{
"bigQuestionId": "string",
"bigQuestionName": "string",
"bigQuestionScore": "string",
"questionCount": 0,
"questionList": [
{
"id": "string",
"questionType": 0,
"questionStem": "string",
"fileId": "string",
"fileUrl": "string",
"correctOption": null,
"optionList": [
{
"options": "string",
"optionContent": "string",
"optionContentAnalysis": "string",
"isCorrect": 0,
"fileId": "string",
"fileUrl": "string"
}
],
"questionScore": 0
}
]
}
]
}
}