POST 添加多个本地文件到 Eagle 应用。

参数:**

参数 说明
path 必填,本地文件路径
name 必填,欲添加图片名
website 图片来源网址
annotation 图片注释
tags 图片标签
folderId 如果带有此参数,图片将会添加到指定文件夹

**

范例代码:

  1. var data = {
  2. "items": [
  3. {
  4. "path": "C://Users/User/Downloads/test.jpg",
  5. "name": "アルトリア・キャスター",
  6. "website": "https://www.pixiv.net/artworks/83585181",
  7. "tags": ["FGO", "アルトリア・キャスター"],
  8. "annotation": "久坂んむり"
  9. },
  10. {
  11. "path": "C://Users/User/Downloads/test2.jpg",
  12. "name": "アルトリア・キャスター",
  13. "website": "https://www.pixiv.net/artworks/83585181",
  14. "tags": ["FGO", "アルトリア・キャスター"],
  15. "annotation": "久坂んむり"
  16. }
  17. ],
  18. "folderId": "KEHB8I2C9F23H"
  19. };
  20. var requestOptions = {
  21. method: 'POST',
  22. body: JSON.stringify(data),
  23. redirect: 'follow'
  24. };
  25. fetch("http://localhost:41595/api/item/addFromPaths", requestOptions)
  26. .then(response => response.json())
  27. .then(result => console.log(result))
  28. .catch(error => console.log('error', error));

返回结果:

  1. {
  2. "status": "success"
  3. }