5

我正在玩动态占位符并被预填充概念所震撼。有没有办法为我的一个占位符选择默认渲染,从而避免体验编辑器中的“选择渲染”对话框?

场景:我有一个名为“PageHead”的渲染,它有三个渲染。其中之一是占位符“PageTeaserPh”,目前允许两种渲染:一种是“PageTeaser”,第二种是“PageTeaserWithImage”。我希望占位符“PageTeaserPh”始终将渲染选择为“PageTeaser”,因此避免出现“选择渲染”对话框。

我做了一些功课,想知道这是否与标准值有关(我们可以在模板级别拥有它;虽然不确定渲染),而且我听说过命令模板概念(不深入)。

任何和所有的帮助表示赞赏。

4

1 回答 1

1

您可以在模板的标准值上分配渲染,然后每个新项目都会有您的PageTeaser渲染。

如果您想自动化此过程,请查看<mvc.getXmlBasedLayoutDefinition>管道,我们通过扩展此管道来注入通用渲染。

更新

我找到了一些代码示例和博客文章,它们应该可以帮助您为操作布局细节指明正确的方向。

public void AddSublayoutToItem(string itemId, string sublayoutId)
{
    using (new Sitecore.SecurityModel.SecurityDisabler())
    {
        if (Sitecore.Data.ID.IsID(itemId) && Sitecore.Data.ID.IsID(sublayoutId))
        {
            //Get the master database and get the item on which you want to add sublayout
            Database masterDatabase = Database.GetDatabase("master");
            Item item = masterDatabase.GetItem(Sitecore.Data.ID.Parse(itemId));

            //  Or you can also get Sitecore Item from Context Database as per your requirement
            //  Item item = Sitecore.Context.Database.GetItem(Sitecore.Data.ID.Parse(itemId));

            if (item != null)
            {
                // Get the layout definitions and the device definition
                LayoutField layoutField = new LayoutField(item.Fields[Sitecore.FieldIDs.LayoutField]);
                LayoutDefinition layoutDefinition = LayoutDefinition.Parse(layoutField.Value);
                DeviceDefinition deviceDefinition = layoutDefinition.GetDevice(Sitecore.Context.Device.ID.ToString());

                //Create a RenderingDefinition and add the reference of sublayout or rendering
                RenderingDefinition renderingDefinition = new RenderingDefinition();
                renderingDefinition.ItemID = sublayoutId;
                //Set placeholder where the rendering should be displayed
                renderingDefinition.Placeholder = "content"; 
                // Set the datasource of sublayout, if any
                renderingDefinition.Datasource = "{24240FF2-B4AA-4EB2-B0A4-63E027934C38}";

                // you can also set datasource of sublayout using Sitecore Path
                // renderingDefinition.Datasource = "/sitecore/content/Home/Books";

                //Add the RenderingReference to the DeviceDefinition
                deviceDefinition.AddRendering(renderingDefinition);

                // Save the layout changes
                item.Editing.BeginEdit();
                layoutField.Value = layoutDefinition.ToXml(); ;
                item.Editing.EndEdit();
            }
        }
    }
}

取自这里 - http://www.bugdebugzone.com/2014/06/how-to-add-sublayout-to-sitecore-item.html

还有一些关于该主题的其他博客

于 2015-10-09T08:45:15.987 回答