查询多条数据
GET
sqlite/select最后修改时间: 2 年前
责任人:
请求参数
Query 参数
table
string
需要操作的表名称
示例值:
links
id[]
array[string]
主键ID
示例值:
["1","2","3"]
where
string
可选
whereOr
string
可选
field
string
可选
示例值:
*
order
string
可选
示例值:
id desc
page
string
可选
示例值:
1
limit
string
可选
示例代码
返回响应
请求成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
code
integer
状态码
msg
string
信息
data
string | integer | boolean | array | object | number | null
数据
示例
{
"code": 200,
"msg": "数据获取成功!",
"data": [
{
"id": 3,
"name": "兔子",
"url": "https://inis.cn",
"age": null,
"create_time": null,
"update_time": null
},
{
"id": 2,
"name": "inis社区",
"url": "https://inis.cc",
"age": null,
"create_time": null,
"update_time": null
},
{
"id": 1,
"name": "inis社区",
"url": "https://inis.cc",
"age": null,
"create_time": null,
"update_time": null
}
]
}
最后修改时间: 2 年前