无法在玻璃映射器的 sitecore MVC(Razoe VIew)帮助中自动映射

Unable to Auto mapping in sitecore MVC(Razoe VIew) help of glass mapper

我正在使用控制器渲染,我创建了一个名为 Footer.cs 的模型,它具有以下属性。

[SitecoreType(TemplateId = "{1044CFB5-2B85-4A8D-9DCC-34764D2AF5B3}", AutoMap = true)]
public class Footer 
{
    public virtual Item Item { get; set; }
    [SitecoreField(FieldName ="Copyright Text First",FieldType = SitecoreFieldType.SingleLineText)]
    public virtual string CopyrightTextFirst { get; set; }

    [SitecoreField(FieldName ="Copyright Text Last",FieldType = SitecoreFieldType.SingleLineText)]
    public virtual string CopyrightTextLast { get; set; }
}

在我的控制器中:

public ActionResult FooterTemplate()
{
    ISitecoreContext ctx = new SitecoreContext();
    var model = ctx.GetCurrentItem<Footer>();
    return View(model);
}

但是,总是得到空结果,请帮助我。

您可以使用:

  public ActionResult FooterTemplate()
  {
    ISitecoreContext ctx = new SitecoreContext();
    var model = ctx.GetCurrentItem<Footer>(RenderingContext.Current.Rendering.DataSource);
    return View(model);
  }