LocomotiveCMS has_many / belongs_to无效

时间:2014-01-22 02:02:37

标签: locomotivecms

由于某些原因,我无法使has_many / belongs_to关系起作用。嵌套内容类型不会显示在父级中。这就是我所拥有的:

应用程序/ CONTENT_TYPES / news_photos.yml

- article:
    label: News articles
    type: belongs_to
    target: news_articles

应用程序/ CONTENT_TYPES / news_articles.yml

- news_photos:
    label: News photos
    type: has_many
    target: news_photos
    class_name: news_photos
    inverse_of: news_article
    required: false
    hint: A description of the field for the editors
    localized: false
    ui_enabled: true

感谢您的帮助!

1 个答案:

答案 0 :(得分:0)

我不确定你是否得到了解决方案,但实际上问题在于命名。 has_many定义应为inverse_of: article

inverse_of的值应该是在其他模型中具有belongs_to关系的属性的名称,在本例中为news_photos