POST api/Mine/LearningLogQuickExercisePagingData
根据试题一级类型、页码、每页条数等参数获取相应的模块练习分页数据列表
Request Information
URI Parameters
None.
Body Parameters
PM_WrongQSList| Name | Description | Type | Additional information |
|---|---|---|---|
| CategoryRootId |
错题本首页要显示的试题类型标识,“最近”错题值为0 |
integer |
None. |
| DataWay |
数据来源途径 |
integer |
None. |
| PageIndex |
要获取数据的页码[默认:1] |
integer |
None. |
| PageSize |
每页要获取的数据条数[默认:10] |
integer |
None. |
| UserToken |
当前登录用户的UserToken,由服务端在用户登录成功之后生成,并在整个访问过程中回传 |
string |
None. |
| DomainName |
来访域名(用户访问该站点时输入的域名) |
string |
None. |
Request Formats
application/json, text/json
Sample:
{
"CategoryRootId": 1,
"DataWay": 2,
"PageIndex": 3,
"PageSize": 4,
"UserToken": "sample string 5",
"DomainName": "sample string 6"
}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
APIResponseModelOfAM_LearningLogQuickExercisePagingData| Name | Description | Type | Additional information |
|---|---|---|---|
| Data | AM_LearningLogQuickExercisePagingData |
None. |
|
| State | integer |
None. |
|
| Msg |
返回的错误或描述信息 |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Data": {
"QSAmount": 1,
"TotalPage": 2,
"ResultList": [
{
"QuestionId": 1,
"QueContent": "sample string 2",
"LastExerciseTime": "2026-03-12T01:02:23.8890147+08:00",
"LastExerciseTime4View": "sample string 4",
"CategoryRootId": 5,
"CategoryNodeId": 6,
"CategoryRemark": "sample string 7"
},
{
"QuestionId": 1,
"QueContent": "sample string 2",
"LastExerciseTime": "2026-03-12T01:02:23.8890147+08:00",
"LastExerciseTime4View": "sample string 4",
"CategoryRootId": 5,
"CategoryNodeId": 6,
"CategoryRemark": "sample string 7"
}
]
},
"State": 1,
"Msg": "sample string 2"
}