axios-miniprogram/docs/pages/config/upload.md

26 lines
455 B
Markdown
Raw Normal View History

2023-04-05 15:24:27 +08:00
# upload
## 发送上传请求
2023-04-07 20:38:29 +08:00
可以上传文件到服务端
- 只有 post 请求才生效
2023-04-05 15:24:27 +08:00
2023-04-13 14:16:11 +08:00
```ts
2023-04-05 15:24:27 +08:00
axios.post(
'/file',
{
// 文件名称,必填
2023-04-07 20:38:29 +08:00
name: 'file',
2023-04-05 15:24:27 +08:00
// 文件路径,必填
filePath: '/file/image.png',
2023-04-15 12:20:09 +08:00
// 可以传递更多自定义字段,这些自定义字段最终会以 formData 的形式发送给服务端 (前提是平台支持)
2023-04-05 15:24:27 +08:00
custom1: 'name',
2023-04-06 15:16:12 +08:00
custom2: 'id',
2023-04-05 15:24:27 +08:00
},
{
upload: true,
},
);
```