上传图片资源接口

API 调用地址

{域名地址}/api/attachment/upload

说明:{域名地址} 需要替换成你的域名地址,如 /api/attachment/upload

调用方法

POST form-data

请求参数

字段名 类型 必填 说明
category_id int 图片资源类别ID
id int 图片资源ID,如果是替换图片的话,必填
file File 要上传的文件资源

返回参数

字段名 类型 说明
code int 错误码
msg string 错误原因说明
data object 结果内容

data参数

字段名 类型 说明
id int 资源ID
file_name string 文件名
file_location string 文件存储路径
file_size int 文件大小
file_md5 string 文件MD5
width int 图片宽度
height int 图片高度
category_id int 资源类别ID
is_image int 是否是图片,1 是图片,0 不是
logo string 原图
thumb string 缩略图
created_time int 创建时间戳
updated_time int 更新时间戳
status int 显示状态

请求数据示例

参数
category_id 1
file File Resource

返回数据示例

{
    "code": 0,
    "data": {
        "id": 213,
        "created_time": 1662734332,
        "updated_time": 1662734332,
        "file_name": "AnqiCMS",
        "file_location": "uploads/202209/09/5632dd13c746a365.webp",
        "file_size": 9348,
        "file_md5": "4fae2c295632dd13c746a3653227f93a",
        "width": 160,
        "height": 160,
        "category_id": 0,
        "is_image": 1,
        "status": 1,
        "logo": "/uploads/202209/09/5632dd13c746a365.webp",
        "thumb": "/uploads/202209/09/thumb_5632dd13c746a365.webp"
    },
    "msg": ""
}

错误代码

错误码 说明
0 OK
-1 错误,错误原因在msg中指出
1001 未登录
1002 未授权
200 API请求OK