- 页面
- 用户
- 角色和权限
- 上传文件和图片
- 支付
- 搜索
- 帮助中心
- 模板
- 后台接口
搜索问题
GET
/api/help/search/question
请求参数
Query 参数
text
string
必需
示例值:
组件
Body 参数application/json
object {0}
示例
{}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request GET 'http://47.92.1.39:8005/api/help/search/question?text=组件' \
--header 'Content-Type: application/json' \
--data-raw ''
返回响应
🟢200成功样例
application/json
Body
success
boolean
必需
errCode
null
必需
errMessage
null
必需
data
array [object {8}]
必需
questionId
integer
可选
userInfo
object
可选
title
string
可选
category
string
可选
tag
string
可选
replayList
array
可选
viewCounts
integer
可选
createTime
string
可选
示例
{
"success": true,
"errCode": null,
"errMessage": null,
"data": [
{
"questionId": 35416092788654080,
"userInfo": {
"userId": 41,
"userName": "test03",
"avatarUrl": null
},
"title": "问题标题2",
"category": "unResolved",
"tag": "组件bug",
"replayList": [],
"viewCounts": 0,
"createTime": "2023-02-05 17:30"
}
]
}
修改于 2023-03-06 11:55:14