我是Drupal初学者。我对将字段添加到内容类型有些困惑。
情况1:假设我有三个content-type Book
,Article
&White Paper
。我创建了Authors
包含所有作者列表的词汇表。
现在,我应该为每种内容类型创建“作者”字段(对作者的术语引用)还是为一种内容类型创建该字段并将其用于其他内容类型?
两种方法的优点/缺点是什么?
如果我从一种内容类型中删除了一个重用字段,会发生什么?它是否会在所有其他位置被删除?
情况2:我关注以下内容类型:(具有指定的字段要求)
+--------------+----------------------+
| Content Type | Field Required |
+--------------+----------------------+
| Book | Year of publication |
+--------------+----------------------+
| Presentation | Date of Presentation |
+--------------+----------------------+
| Article | Date of Publication |
+--------------+----------------------+
| Event | Held On |
+--------------+----------------------+
我该怎么办?我应该为一种内容类型创建一个字段并将其用于所有其他内容类型,还是为每种内容类型创建字段?
帮助我清楚地了解何时以及如何适当地重用现有字段。
Keeping in mind that you can have different labels for each content type's instance of the same field, will that give you enough of a visual (or data-led) cue to let you know the differences between the data?