Как заставить работать несколько коллекций в Netlify-CMS?

Я работаю над проектом Gridsome, где я интегрировал Netlify-CMS. Вот как выглядит мой файл config.yml:

backend:
  name: github
  branch: master # Branch to update (optional; defaults to master)
  repo: user/repo
media_folder: "images/uploads"
public_folder: "/images/uploads"
collections:
  - name: "blog" # Used in routes, e.g., /admin/collections/blog
    label: "Blog" # Used in the UI
    folder: "blog" # The path to the folder where the documents are stored
    create: true # Allow users to create new documents in this collection
    slug: "{{year}}-{{month}}-{{day}}-{{slug}}" # Filename template, e.g., YYYY-MM-DD-title.md
    fields: # The fields for each document, usually in front matter
      - {label: "Layout", name: "layout", widget: "hidden", default: "blog"}
      - {label: "Title", name: "title", widget: "string"}
      - {label: "Publish Date", name: "date", widget: "datetime"}
      - {label: "Featured Image", name: "thumbnail", widget: "image"}
      - {label: "Body", name: "body", widget: "markdown"}
  - name: "projects" # Used in routes, e.g., /admin/collections/blog
    label: "Projects" # Used in the UI
    folder: "projects" # The path to the folder where the documents are stored
    create: true # Allow users to create new documents in this collection
    slug: "{{year}}-{{month}}-{{day}}-{{slug}}" # Filename template, e.g., YYYY-MM-DD-title.md
    fields: # The fields for each document, usually in front matter
      - {label: "Layout", name: "layout", widget: "hidden", default: "blog"}
      - {label: "Customer", name: "customer", widget: "string"}
      - {label: "Activity", name: "activity", widget: "string"}
      - {label: "Date", name: "date", widget: "datetime"}
      - {label: "Link", name: "link", widget: "string"}
      - {label: "Featured Image", name: "thumbnail", widget: "image"}
      - {label: "Body", name: "body", widget: "markdown"}

Я могу видеть как Блог, так и Проекты в интерфейсе администратора, однако, когда я нажимаю на коллекции Проектов, он не показывает мой существующий файл.md в указанной папке. В то же время, когда я пытаюсь создать новый проект, он не добавляется, и сообщение об ошибке не отображается.

Все работает как шарм с коллекцией блога.

Вот как выглядит каталог проекта:

1 ответ

Решение

Там нет поля, которое может служить идентификатором. Прямо сейчас у вас должно быть поле с названием "title" или в поле "identifier_field" должно быть указано имя поля, которое вы хотите использовать вместо этого. Значение поля должно быть уникальным для записи, поэтому я предполагаю, что добавление "заголовка" к каждому проекту, вероятно, является хорошим шагом в любом случае.

Для этого должна быть ошибка, если вы можете открыть ошибку в GitHub для этого, мы можем посмотреть на нее.

Другие вопросы по тегам