## 列表數據
~~~[api]
get:public/table/?act=list
*string:table#表名
<<<
success
{
"code": 0,
"msg": "獲取成功!",
"data": [
{
"id": 1,
"content": "我是內容",
"type": "我是分類",
"time": "2024-02-06 04:55:53"
}
],
"count": 1
}
<<<
error
~~~
## 獲取表的數據的數量
~~~[api]
get:public/table/?act=count
*string:table#表名
<<<
success
{
"code": 0,
"msg": "獲取成功!",
"count": 13
}
<<<
error
~~~