6

我们刚刚更新了我们的项目以使用 Glass.Mapper V3。我们喜欢它。但是我们遇到了一个问题。它似乎不尊重语言后备。

我们已经设置了我们的网站,以便如果用户选择一种非默认语言,他们将看到该语言的项目(如果存在)。如果没有,他们将看到默认(“后备”)语言版本。我们还在字段级别进行了设置,因此如果有一个项目的非默认版本但并非所有字段都已更改,则任何未更改的字段都将回退到该字段的默认语言版本的值。

我们可以做些什么来让 Glass 使用语言回退?

4

2 回答 2

6

我正在用一些关于我们为什么进行检查的背景来更新它。如果您要求一个不存在的 Sitecore 项目,您会得到一个空值,因此很容易处理。但是,如果您要求使用该特定语言不存在的 Sitecore 项目,则会返回没有版本的项目。这意味着我们必须进行此检查,否则 Glass 最终会返回空类,我认为这没有多大意义。

这个答案会有点实验性。

首先在 Spherical.cs 文件中,您需要禁用检查:

protected void Application_BeginRequest()
{
    Sitecore.Context.Items["Disable"] = new VersionCountDisabler();
}

然后,我们可以稍后将检查移至对象构造管道。首先创建一个任务:

public class FallbackCheckTask : IObjectConstructionTask
{
    public void Execute(ObjectConstructionArgs args)
    {
        if (args.Result == null)
        {
            var scContext = args.AbstractTypeCreationContext as SitecoreTypeCreationContext;
            if (scContext.Item == null)
            {
                args.AbortPipeline();
                return;
            }    
            //this checks to see if the item was created by the fallback module
            if (scContext.Item is Sitecore.Data.Managers.StubItem)
            {

                return;
            }

            // we could be trying to convert rendering parameters to a glass model, and if so, just return.
            if (String.Compare(scContext.Item.Paths.FullPath, "[orphan]/renderingParameters", true) == 0)
            {
                return;
            }

            if (scContext.Item.Versions.Count == 0)
            {
                args.AbortPipeline();
                return;
            }
        }
    }
}

然后最后在 GlassMapperScCustom 类中注册这个任务:

    public static void CastleConfig(IWindsorContainer container){
        var config = new Config();

        container.Register(
            Component.For<IObjectConstructionTask>().ImplementedBy<FallbackCheckTask>().LifestyleTransient()
            );
        container.Install(new SitecoreInstaller(config));
    }

我没有对此进行测试,但理论上它应该可以工作 <- 免责声明 ;-)

于 2013-10-31T16:52:25.737 回答
1

使用 sitecore 7 (7.2) + IoC + solr + mvc 时,提供的解决方案几乎没有潜在问题。

当使用 IoC ex Winsdor 时,请确保您的 Global.asax 看起来像这样<%@ Application Codebehind="Global.asax.cs" Inherits="Sitecore.ContentSearch.SolrProvider.CastleWindsorIntegration.WindsorApplication" Language="C#" %>。曾经,这个文件被错误地更改为<%@ Application Codebehind="Global.asax.cs" Inherits="Merck.Manuals.Web.Global" Language="C#" %>并且语言回退不起作用。我们得到的错误也不是描述性的,因为我们认为 solr 模式不正确。

可以将代码Sitecore.Context.Items["Disable"] = new VersionCountDisabler();添加到 PreprocessRequestProcessor 并且它工作正常,这是修改 global.asax 的更好解决方案。

于 2015-05-08T12:39:57.860 回答