選擇一個 JSON 檔案來創建 SQLite 資料庫
[
{
"name": "John",
"age": 30,
"email": "john@example.com"
},
{
"name": "Mai",
"age": 24,
"email": "mai@example.com"
},
{
"name": "Bill",
"age": 28,
"email": "bill@example.com"
}
]
上傳成功後,您將獲得:
每個 API 請求都需要在 Header 中加入對應的 API Key:
headers: { 'X-API-Key': '對應操作的-api-key' }
GET [將由上傳成功後自動填入]/all
獲取資料表中的所有記錄
需要使用:查詢所有數據的 API Key
GET [將由上傳成功後自動填入]/select/:key/:value
根據指定的鍵值對查詢數據
需要使用:條件查詢的 API Key
POST [將由上傳成功後自動填入]/update/:key/:value/:key2/:value2
更新符合條件的數據
需要使用:更新數據的 API Key
POST [將由上傳成功後自動填入]/insert
插入新的數據記錄
需要使用:插入數據的 API Key
DELETE [將由上傳成功後自動填入]/delete/:key/:value
刪除符合條件的數據
需要使用:刪除數據的 API Key
查詢所有數據:
curl -H "X-API-Key: 查詢所有數據的-api-key" \
"[將由上傳成功後自動填入]/all"
插入數據:
curl -X POST \
-H "Content-Type: application/json" \
-H "X-API-Key: 插入數據的-api-key" \
-d '{"name":"John","age":30}' \
"[將由上傳成功後自動填入]/insert"