This commit is contained in:
Liang Ding 2022-03-24 00:16:17 +08:00
parent 02f9915fb0
commit 561e722f6d
No known key found for this signature in database
GPG key ID: 136F30F901A2231D
2 changed files with 39 additions and 3 deletions

38
API.md
View file

@ -771,7 +771,43 @@ View API token in <kbd>Settings - About</kbd>, request header: `Authorization: T
### Render a template
/template/render
/api/template/render
## File
### Get file
* `/api/file/getFile`
* Parameters
``json
{
"path": "/data/20210808180117-6v0mkxr/20200923234011-ieuun1p.sy"
}
``
* `path`: the file path under the workspace path
* Return value
File content
### Put file
* `/api/file/putFile`
* The parameter is an HTTP Multipart form
* `path`: the file path under the workspace path
* `isDir`: whether to create a folder, when `true` only create a folder, ignore `file`
* `modTime`: last access and modification time, Unix time
* `file`: the uploaded file
* return value
```json
{
"code": 0,
"msg": "",
"data": null
}
```
## Export

View file

@ -774,7 +774,7 @@
### 渲染模板
/template/render
/api/template/render
## 文件
@ -800,7 +800,7 @@
* `path`:工作空间路径下的文件路径
* `isDir`:是否为创建文件夹,为 `true` 时仅创建文件夹,忽略 `file`
* `modTime`最近访问时间Unix time
* `modTime`:最近访问和修改时间Unix time
* `file`:上传的文件
* 返回值