1
我有博客庫,它包含博客文章列表。我通過使用此代碼Umbraco獲取博客文章的屬性
var contentType = ApplicationContext.Services.ContentTypeService.GetContentType("BlogPost");
var blogPostList = ApplicationContext.Services.ContentService.GetContentOfContentType(contentType.Id);
現在我訪問自定義數據類型的屬性通過使用
foreach (var blog in blogPostList)
{
foreach (var property in blog.Properties)
{
}
}
現在我可以訪問屬性和獲得它的價值,但對於一些屬性,我得到JSON訪問所有博客文章字符串,這對我來說沒有用,因爲我需要創建模型來正確地將json字符串解析爲合適的json。
有沒有什麼辦法可以在這種情況下使用GetPropertyValue或其他方式來獲取格式正確的Json。
感謝您的回覆我結束了使用 Umbraco.ContentQuery.Search(「promotionPost」) 我認爲這與ContentAtXPath相同。現在我可以訪問GetPropertyValue()。 – Epistemologist