由于某些原因,我无法使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
感谢您的帮助!
答案 0 :(得分:0)
我不确定你是否得到了解决方案,但实际上问题在于命名。
has_many
定义应为inverse_of: article
inverse_of
的值应该是在其他模型中具有belongs_to
关系的属性的名称,在本例中为news_photos
。