Appearance
上传任意格式的文件 API
| Path | Method | Created At |
|---|---|---|
| /api/common/files/any | POST | 2025-11-29 00:39:11 |
Request
| Key | Rule | Description |
|---|
Response
| Key | Type | Example | Comment |
|---|---|---|---|
| url | string | https://www.example.com/image.jpg | 上传成功后的文件地址 |
TypeScript Result Example:
TypeScript
interface Result {
/** 上传成功后的文件地址 */
url: string;
}