POST api/QuickExe/ReportCard
获取某次模块练习的成绩单
Request Information
URI Parameters
None.
Body Parameters
成绩单数据获取条件
PM_QuickExerciseQSReportCard| Name | Description | Type | Additional information |
|---|---|---|---|
| QuickExeId |
快速练习行为标识,用于唯一性区分每次快速练习 |
integer |
None. |
| WithTime |
快速练习所用时间(秒),>0表示做完题后执行交卷操作到服务端,=0表示无提交动作只访问成绩单。 |
integer |
None. |
| UserToken |
当前登录用户的UserToken,由服务端在用户登录成功之后生成,并在整个访问过程中回传 |
string |
None. |
| DomainName |
来访域名(用户访问该站点时输入的域名) |
string |
None. |
Request Formats
application/json, text/json
Sample:
{
"QuickExeId": 1,
"WithTime": 2,
"UserToken": "sample string 3",
"DomainName": "sample string 4"
}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
APIResponseModelOfAM_QuickExerciseQSReportCard| Name | Description | Type | Additional information |
|---|---|---|---|
| Data | AM_QuickExerciseQSReportCard |
None. |
|
| State | integer |
None. |
|
| Msg |
返回的错误或描述信息 |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Data": {
"QSSumAmout": 1,
"AnswerAmount": 2,
"AnswerRightAmount": 3,
"SumWithTime": 4,
"CategoryNoteName": "sample string 5",
"ResultAnalysisByCategory": [
{
"QSOrdinal": 1,
"IsDone": 64,
"DoneResult": 3
},
{
"QSOrdinal": 1,
"IsDone": 64,
"DoneResult": 3
}
]
},
"State": 1,
"Msg": "sample string 2"
}