由于某种原因,我无法获得has_many/allats_to关系的工作。嵌套的内容类型不会显示在父母中。这是我拥有的:
app/content_types/news_photos.yml
- article:
label: News articles
type: belongs_to
target: news_articles
app/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
感谢您的帮助!
我不确定您是否可以解决该解决方案,但实际上是在命名中。has_many
定义应具有inverse_of: article
inverse_of
的值应该是在其他模型中具有belongs_to
关系的属性的名称,在这种情况下为news_photos
。