补充接收器文档

This commit is contained in:
2betop 2020-06-16 11:15:36 +08:00
parent 8e25149e20
commit 10b4ce8e13
1 changed files with 26 additions and 0 deletions

View File

@ -34,3 +34,29 @@
```
如果不希望 File 控件接管上传,可以配置 `asBlob` 或者 `asBase64` 这两个属性二选一采用这种方式后File 控件不再自己上传了,而是直接把文件数据作为表单项的值,文件内容会在 Form 表单提交的接口里面一起带上。
### 接口说明
开始之前请你先阅读[整体要求](../api.md)。
#### reciever
用来自己实现文件接收
**发送:**
POST 方式,内容体为 form-data/multipart 格式。文件的字段名为 file。
**响应:**
常规返回格式如下:
```json
{
"status": 0,
"msg": "",
"data": {
"value": "一般为文件的下载地址"
}
}
```