Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 Sitecore 中,创建富文本编辑器呈现/组件并将其显示在体验编辑器的页面上(对于 ASP.NET MVC 应用程序)涉及哪些步骤?
谢谢!
对于使用具有名为 Body 的富文本字段的模板的项目,这是您的呈现标记。在编辑模式下呈现时,该字段是完全可编辑的。
@using Sitecore.Mvc @using Sitecore.Mvc.Presentation @model RenderingModel <div class="row"> @Html.Sitecore().Field("Body") </div>