0

我有以下小脚本

Sitecore.Data.Database master = Sitecore.Configuration.Factory.GetDatabase("master");
    using (new Sitecore.SecurityModel.SecurityDisabler())
    {
            foreach (Sitecore.Data.Items.Item child in item.Children)
            {
                foreach (ItemLink link in child.Links.GetAllLinks())
                {
                    Item itm = link.GetTargetItem();
                    if (itm != null) {
                        Response.Write(link.TargetPath + " (" + itm.Paths.IsMediaItem + ", " + itm.ID + ")" + "<br/>");
                    } else
                    {
                        Response.Write("<span style='color:red;font-weight:bold;'>NULL ITEM ("+ link.TargetPath + ")</span><br/>");
                    }
                }           

                if (item.Paths.ContentPath.Split("/".ToCharArray()).Length <= 10)
                    RecurseLinks(child, reset);
            }
    }

这会从指定的起始路径遍历所有项目(和子项),并获取项目中定义的所有链接。

我需要更新的一些链接,因为其中一些当前是用绝对路径定义的,而不是它链接到的项目的 ID(媒体或内容项目)。

我将如何在上述脚本中实现这一点?

4

1 回答 1

0

“重建链接数据库”操作应该有效。空 ID 可能是由于链接断开(更新链接时在数据库中未找到目标项目)造成的。因此,通过控制面板或在您的代码中重建链接(请参阅 参考资料LinkDatabaseHelper)应该可以工作。

于 2012-09-21T21:45:04.753 回答