上传文件
POST
/api/attachments.json最后修改时间: 8 个月前
请求参数
Body 参数multipart/form-data
file
file
上传的文件
description
string
上传文件描述
container_id
string
可选
上传文件归属模型ID
container_type
string
可选
上传文件归属模型类型
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
id
string
文件ID
title
string
文件标题
filesize
string
文件大小
is_pdf
boolean
文件是否为pdf
url
string
文件绝对地址
created_on
string
文件创建时间
content_type
string
文件类型
示例
{
"id": "f5838d8f-451b-4793-a0f2-0278430e8207",
"title": "1tab.ico",
"filesize": "9.4 KB",
"is_pdf": false,
"url": "http://localhost:3000/api/attachments/f5838d8f-451b-4793-a0f2-0278430e8207",
"created_on": "2023-12-25 14:53",
"content_type": "image/vnd.microsoft.icon"
}
最后修改时间: 8 个月前