2

在 Umbraco 6.1.6 的开发者部分有一个关系类型节点。

任何人都可以解释什么是关系类型以及它们是否有实际应用。我看过一些文档,但仍然不确定我为什么需要使用它们。

它们在 v6 和 v7 中是否仍然相关?

4

1 回答 1

5

我最近开始记录关系服务,它应该提供一些关于你可以用它做什么的洞察力。我偶尔使用它来维护内容树中节点之间的关系。

如果您曾经在 Umbraco 中复制一个节点,您可以选择将新节点与原始节点相关联,它使用一种称为“复制时关联文档”的关系类型。例如,在关系到位后,您可以挂钩到诸如 Save 事件之类的事件,并且每当更新父节点时,您还可以更新相关的子节点。这种技术有时用于希望跨每种语言同步内容的多语言站点。

以下是我最近正在工作的一个项目中的一个简短示例,其中可能会创建一个重复事件。我们需要知道该系列中的第一个事件以及该事件的所有后续发生(孩子)。

  public class Events : ApplicationEventHandler
  {
    protected override void ApplicationStarted(UmbracoApplicationBase umbracoApplication, ApplicationContext applicationContext)
    {
      ContentService.Saved += ContentServiceSaved;
    }

    private void ContentServiceSaved(IContentService sender, SaveEventArgs<IContent> e)
    {
        var rs = ApplicationContext.Current.Services.RelationService;
        var relationType = rs.GetRelationTypeByAlias("repeatedEventOccurence");

        foreach (IContent content in e.SavedEntities)
        {
            var occurences = rs.GetByParentId(content.Id).Where(r => r.RelationType.Alias == "repeatedEventOccurence");
            bool exists = false;

            foreach (var doc in occurences.Select(o => sender.GetById(o.ChildId)))
            {
                // Check if there is already an occurence of this event with a matching date
            }

            if (!exists)
            {
                var newDoc = sender.Copy(content, eventsDoc.Id, true, User.GetCurrent().Id);

                // Set any properties you need to on the new node
                ...

                rs.Relate(content, newDoc, relationType);
            }       
        }
    }
}
于 2014-02-13T20:38:13.837 回答