允许在NetlifyCMS中选择多个图像

时间:2020-02-10 14:07:58

标签: gatsby netlify-cms

我目前正在将NetlifyCMS集成到我的Gatsby项目中,并且无法选择多个图像。我没有指定任何媒体库,因为我只想直接将这些图像存储在我的仓库中。我正在使用gatsby-plugin-netlify-cms,并将此配置用于我的收藏集

- name: "post"
    label: "Posts"
    label_singular: "Post"
    folder: "example/data/posts"
    create: true
    slug: "{{year}}-{{month}}-{{day}}-{{slug}}"
    editor:
      preview: false
    fields:
      - { label: "Title", name: "title", widget: "string" }
      - label: "Media"
        name: "media"
        widget: "image"
        allow_multiple: true
        media_library:
          config:
            multiple: true
      - { label: "Location", name: "location", type: "Point", widget: "map", required: false }
      - { label: "Body", name: "body", widget: "text", required: false }

尽管我指定了allow_multiplemedia_library.config.multiple,但是在NetlifyCMS管理GUI中我不能选择多个图像。

我已经安装了那些软件包

netlify-cms@^2.10.17
netlify-cms-app@^2.11.14
netlify-cms-widget-image@^2.5.0
gatsby-plugin-netlify-cms@^4.1.39

我错过了什么吗?在文档中没有找到任何关于此的信息。

欢呼

1 个答案:

答案 0 :(得分:1)

原来,您需要添加第三方媒体库来支持此操作。