GET api/retest/getmatcheddifficultystatic?rtrId={rtrId}&knowledge={knowledge}&testTypeId={testTypeId}&drtrId={drtrId}
获取匹配的条件的难度及试题数量
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
rtrId |
题库 |
integer |
Required |
knowledge |
知识点 |
string |
Required |
testTypeId |
试题类型 |
integer |
Required |
drtrId |
题库描述 |
globally unique identifier |
None. |
Body Parameters
None.
Response Information
Resource Description
获取匹配的条件的难度及试题数量
JsonRtnDtoOfListOfMatchedDifficultyDtoName | Description | Type | Additional information |
---|---|---|---|
Msg | string |
None. |
|
State | RtnState |
None. |
|
Data | Collection of MatchedDifficultyDto |
None. |
Response Formats
application/json, text/json
Sample:
{ "Msg": "sample string 1", "State": 100, "Data": [ { "Difficult": 1, "DifficultName": "sample string 2", "Num": 3 }, { "Difficult": 1, "DifficultName": "sample string 2", "Num": 3 } ] }
text/html
Sample:
{"Msg":"sample string 1","State":100,"Data":[{"Difficult":1,"DifficultName":"sample string 2","Num":3},{"Difficult":1,"DifficultName":"sample string 2","Num":3}]}
application/xml, text/xml
Sample:
<JsonRtnDtoOfArrayOfMatchedDifficultyDtov3CTEUQJ xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BJ.Services"> <Data> <MatchedDifficultyDto> <Difficult>1</Difficult> <DifficultName>sample string 2</DifficultName> <Num>3</Num> </MatchedDifficultyDto> <MatchedDifficultyDto> <Difficult>1</Difficult> <DifficultName>sample string 2</DifficultName> <Num>3</Num> </MatchedDifficultyDto> </Data> <Msg>sample string 1</Msg> <State>Display</State> </JsonRtnDtoOfArrayOfMatchedDifficultyDtov3CTEUQJ>
text/javascript, application/javascript, application/json-p
Sample:
/**/ typeof === 'function' && ({"Msg":"sample string 1","State":100,"Data":[{"Difficult":1,"DifficultName":"sample string 2","Num":3},{"Difficult":1,"DifficultName":"sample string 2","Num":3}]});