GET api/knowledge/GetKnowledgesStaticByReTestRepositoryIdIncludeChildrenReTest?rtrId={rtrId}

根据题库编号获取知识点(包括复合题下小题的知识点)

Request Information

URI Parameters

NameDescriptionTypeAdditional information
rtrId

题库编号

integer

Required

Body Parameters

None.

Response Information

Resource Description

根据题库编号获取知识点(包括复合题下小题的知识点)

JsonRtnDtoOfListOfKnowledgesStaticLiDto
NameDescriptionTypeAdditional information
Msg

string

None.

State

RtnState

None.

Data

Collection of KnowledgesStaticLiDto

None.

Response Formats

application/json, text/json

Sample:
{
  "Msg": "sample string 1",
  "State": 100,
  "Data": [
    {
      "Knowledge": "sample string 1",
      "Num": 2
    },
    {
      "Knowledge": "sample string 1",
      "Num": 2
    }
  ]
}

text/html

Sample:
{"Msg":"sample string 1","State":100,"Data":[{"Knowledge":"sample string 1","Num":2},{"Knowledge":"sample string 1","Num":2}]}

application/xml, text/xml

Sample:
<JsonRtnDtoOfArrayOfKnowledgesStaticLiDtov3CTEUQJ xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BJ.Services">
  <Data>
    <KnowledgesStaticLiDto>
      <Knowledge>sample string 1</Knowledge>
      <Num>2</Num>
    </KnowledgesStaticLiDto>
    <KnowledgesStaticLiDto>
      <Knowledge>sample string 1</Knowledge>
      <Num>2</Num>
    </KnowledgesStaticLiDto>
  </Data>
  <Msg>sample string 1</Msg>
  <State>Display</State>
</JsonRtnDtoOfArrayOfKnowledgesStaticLiDtov3CTEUQJ>

text/javascript, application/javascript, application/json-p

Sample:
/**/ typeof  === 'function' && ({"Msg":"sample string 1","State":100,"Data":[{"Knowledge":"sample string 1","Num":2},{"Knowledge":"sample string 1","Num":2}]});