POST
添加多个本地文件到 Eagle 应用。
参数:**
参数 | 说明 |
---|---|
path | 必填,本地文件路径 |
name | 必填,欲添加图片名 |
website | 图片来源网址 |
annotation | 图片注释 |
tags | 图片标签 |
folderId | 如果带有此参数,图片将会添加到指定文件夹 |
范例代码:
var data = {
"items": [
{
"path": "C://Users/User/Downloads/test.jpg",
"name": "アルトリア・キャスター",
"website": "https://www.pixiv.net/artworks/83585181",
"tags": ["FGO", "アルトリア・キャスター"],
"annotation": "久坂んむり"
},
{
"path": "C://Users/User/Downloads/test2.jpg",
"name": "アルトリア・キャスター",
"website": "https://www.pixiv.net/artworks/83585181",
"tags": ["FGO", "アルトリア・キャスター"],
"annotation": "久坂んむり"
}
],
"folderId": "KEHB8I2C9F23H"
};
var requestOptions = {
method: 'POST',
body: JSON.stringify(data),
redirect: 'follow'
};
fetch("http://localhost:41595/api/item/addFromPaths", requestOptions)
.then(response => response.json())
.then(result => console.log(result))
.catch(error => console.log('error', error));
返回结果:
{
"status": "success"
}