我如何在 sitecore 中创建富文本编辑器组件

How do i create a rich text editor component in sitecore

在 Sitecore 中,创建富文本编辑器 rendering/component 并将其显示在体验编辑器的页面上(对于 ASP.NET MVC 应用程序)涉及哪些步骤?

谢谢!

对于使用模板的项目,该模板具有名为 Body 的富文本字段,这是您的呈现标记。在编辑模式下呈现时,该字段是完全可编辑的。

@using Sitecore.Mvc
@using Sitecore.Mvc.Presentation
@model RenderingModel
<div class="row">
    @Html.Sitecore().Field("Body")
</div>