有两个docTypes,一个是富文本编辑器,另一个是contentpicker。
需要任何使用contentpicker doctype的页面从其他docType页面上的富文本编辑器导入内容。
我可以获取页面的ID但不确定如何在编辑器中定位内容
@Umbraco.Field("namedContentPicker")
答案 0 :(得分:1)
你不应该使用Umbraco.Field。相反,做这样的事情:
@{var namedContent = Umbraco.TypedContent(Model.Content.GetPropertyValue("namedContentPicker"))
var namedContentRte = namedContent.GetPropertyValue("richTextAliasHere")}