我在Umbraco后台存储了一些电子邮件模板(意思是样本,不要与umbraco模板混淆)。在某些时候,我需要使用此模板(主题,正文,cc,密件抄送等)发送电子邮件。为此,我使用自动生成的模型,这需要IPublishedContent
进行初始化。
因此我无法初始化此模型,因为我无法获得IPUblishedContent
类型的内容。
当我通过Id得到它时一切正常。但我不想依赖于id,因为它改变并决定使用路径而不能这样做。执行以下命令时,我得到NullReferenceException:
contentCache.GetByRoute(true, "relative path to email template")//I think I am mistaken here as I am using cache
相对路径看起来像"/settings/emailtemplate/registrationtemplate"
任何人都可以指出我如何实现这一目标,因为我是Umbraco的新手并且正在努力理解我应该如何做某些事情。
我最初尝试的另一种方法(也不成功)是按文档类型ID
获取内容 var contentService = umbracoContext.Application.Services.ContentService;
var contentTypeService = umbracoContext.Application.Services.ContentTypeService;
var contentType = contentTypeService.GetContentType("emailSettings");
var templates = contentService.GetContentOfContentType(contentType.Id);
然后我从ContentService获取内容:
var content = templates.FirstOrDefault(c => c.Name.Contains("Registration"));
var publishedContent = contentService.GetById(content.Id)
但在此我将publishedContent
作为IContent
并且无法将其转换为IPublishedContent
。
更新1
我发现原因是我试图从Umbraco API控制器获取已发布的内容。所以问题是有没有办法从api 获取已发布的内容?
答案 0 :(得分:5)
你没有提到Umbraco,但你可以像这样使用UmbracoHelper。
IPublishedContent content = UmbracoHelper.TypedContent(content.Id);
如果您无法访问UmbracoHelper,请将其视为:
var umbracoHelper = new UmbracoHelper(UmbracoContext.Current);