题目详情
<p>[TOC]</p>
<h5>简要描述</h5>
<ul>
<li>试题题目详情接口</li>
</ul>
<h5>请求URL</h5>
<ul>
<li><code>topic/topic_info</code></li>
</ul>
<h5>请求方式</h5>
<ul>
<li>POST </li>
</ul>
<h5>参数</h5>
<table>
<thead>
<tr>
<th style="text-align: left;">参数名</th>
<th style="text-align: left;">必选</th>
<th style="text-align: left;">类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: left;">id</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">int</td>
<td>题目id</td>
</tr>
</tbody>
</table>
<p>在详情下方展示:练习记录列表</p>
<p><strong>更改题目状态,接口:topic/up_topic_status</strong>
传参:id(题目id),status(状态:0=下架,1=上架)</p>
<h5>返回示例</h5>
<pre><code> {
&quot;code&quot;: 200,
&quot;msg&quot;: &quot;ok!&quot;,
&quot;data&quot;: {
&quot;id&quot;: 5,
&quot;cate_id&quot;: 7,
&quot;cate_name&quot;: &quot;生物竞赛&quot;, // 一级分类名称
&quot;two_cate_id&quot;: 53,
&quot;problem&quot;: &quot;5选择题--多选:正确答案为AB(解析文字+图+视频)&quot;,
&quot;image&quot;: [ // 题目图片
&quot;https://testview.bioquan.com/images/46cfcc0b7b3271be249ab7d51de27561.png&quot;,
&quot;https://testview.bioquan.com/images/46cfcc0b7b3271be249ab7d51de27561.png&quot;
],
&quot;source_type&quot;: 1, // 题目来源:1=智能诊断,2=精准刷题,3=视频书,4=大联考
&quot;answer&quot;: [ // 选项
&quot;选项1&quot;,
&quot;选项2&quot;,
&quot;选项3&quot;,
&quot;选项4&quot;
],
&quot;right_answer&quot;: &quot;AB&quot;, // 正确答案
&quot;right_answer_image&quot;: [ // 答案图片
&quot;https://testview.bioquan.com/images/46cfcc0b7b3271be249ab7d51de27561.png&quot;
],
&quot;type&quot;: 2, // 题型
&quot;sort&quot;: 1,
&quot;pid&quot;: 0,
&quot;is_group&quot;: 0,
&quot;parsing&quot;: &quot;解析文字这道题这么做才对这道题这么做才对这道题这么做才对这道题这么做才对这道题这么做才对解析文字&quot;,
&quot;parsing_image&quot;: [ // 解析图片
&quot;https://testview.bioquan.com/images/46cfcc0b7b3271be249ab7d51de27561.png&quot;
],
&quot;parsing_video&quot;: &quot;https://view.bioquan.com/video/2021929101324775.mp&quot;, // 解析视频
&quot;kn&quot;: &quot;知识点&quot;, // 知识点
&quot;score&quot;: 0, // 分值
&quot;create_time&quot;: 0,
&quot;update_time&quot;: 0,
&quot;status&quot;: 1, // 状态
&quot;book_id&quot;: 1, // 视频书id
&quot;reel_id&quot;: 1,
&quot;reel_order&quot;: 0, // 试卷内排序
&quot;reel_title&quot;: &quot;第一套(混合题型)&quot;, // 来源试卷
&quot;study_way&quot;: 1, // 学习阶段:1=预科,2=升维,3=同步,4=备考(0代表不存在学习阶段、不用展示)
&quot;two_cate_name&quot;: &quot;植物学&quot;, // 二级分类名称
&quot;sign&quot;:&quot;AAA&quot;,// 上传标识
// 只要视频书类型题目才会返回
&quot;book_name&quot;: &quot;生物竞赛《星题库》2026版 模糊&quot;, // 来源视频书
&quot;one_module_name&quot;: &quot;第二模块&quot;, // 来源专题/功能
&quot;two_module_name&quot;: &quot;第二模块1&quot;, // 来源考点/模块
&quot;one_type_name&quot;: &quot;2023&quot;, // 年份
&quot;two_type_name&quot;: &quot;江苏省&quot;, // 省份
&quot;three_type_name&quot;: &quot;C级&quot; // 难度
&quot;s_list&quot;: [ // 小题列表
{
&quot;id&quot;: 48,
&quot;cate_id&quot;: 7,
&quot;two_cate_id&quot;: 53,
&quot;problem&quot;: &quot;组合题小题--选择题单选:正确答案为A&quot;,
&quot;image&quot;: [],
&quot;answer&quot;: [
&quot;选项1&quot;,
&quot;选项2&quot;,
&quot;选项3&quot;,
&quot;选项4&quot;
],
&quot;right_answer&quot;: &quot;A&quot;,
&quot;right_answer_image&quot;: [],
&quot;type&quot;: 1,
&quot;sort&quot;: 2,
&quot;is_group&quot;: 1,
&quot;s_order&quot;: 0,
&quot;parsing&quot;: &quot;这道题这么做才对这道题这么做才对这道题这么做才对这道题这么做才对这道题这么做才对解析文字&quot;,
&quot;parsing_image&quot;: [],
&quot;parsing_video&quot;: null,
&quot;kn&quot;: null,
&quot;score&quot;: 0,
&quot;status&quot;: 1,
&quot;create_time&quot;: 0
}
]
}
}</code></pre>
<h5>返回参数说明</h5>
<table>
<thead>
<tr>
<th style="text-align: left;">参数名</th>
<th style="text-align: left;">类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
<h5>备注</h5>
<ul>
<li>更多返回错误代码请看首页的错误代码描述</li>
</ul>