什么是MVC中的CMS最佳实践?

时间:2016-11-20 13:51:19

标签: asp.net asp.net-mvc razor content-management-system

我的MVC项目包含很多视图, 我希望客户能够按照他/她的喜好编辑内容并保存。

如何制作视图的CMS(内容管理系统)?

我在telerik中读过有关RedEditor的信息,但它只适用于html文件,  MVC是包含剃刀的cshtml文件,我无法通过RedEditor处理。

我的问题是我有一个为客户建立的网站,现在客户要求修改他喜欢的网站,修改内容..Images ..等等,以及由剃刀构建的所有视图

例如:这是由剃刀制作的页面 我希望管理员客户端修改标题&图片&保存后,在实时网站上反映出来

enter image description here

1 个答案:

答案 0 :(得分:1)

为了在MVC中执行简单的内容管理系统,您可能希望组织内容以使页面模型是内容项列表,以便您的视图迭代内容项并显示它们

public partial class Content
{
    public Content()
    {
        this.Pages = new HashSet<Page>();
    }

    public int ContentID { get; set; }
    public string ContentTitle { get; set; }
    public string ContentImage { get; set; }
    public string ContentImageAlt { get; set; }
    public string ContentTitleLink { get; set; }
    public string ContentImageLink { get; set; }
    public string ContentBody { get; set; }
    public string ContentTeaser { get; set; }
    public System.DateTime ContentDate { get; set; }
    public bool enabled { get; set; }
    public int SortKey { get; set; }
    public int ContentTypeID { get; set; }

    public virtual ContentType ContentType { get; set; }
    public virtual ICollection<Page> Pages { get; set; }
}

视图只是

        @foreach (var art in Model.Content)
        {
            <text>
                @Html.DynamicPageContent(art)
            </text>
        }

和使用的助手是

    public static MvcHtmlString DynamicPageContent(this HtmlHelper helper, Content content)
    {
        if (content.ContentType==null) return new MvcHtmlString(content.ContentBody);
        return content == null ? null : MvcHtmlString.Create(  String.Format("\n<!--{0}: {1}({2})-->\n",content.ContentID, content.ContentType.ContentTypeDescription, content.ContentTypeID)+helper.Partial(content.ContentType.TemplateName, content).ToString().Trim());
    }

其中每个Content.ContentType包含一个TemplateName,它是MVC视图名称。

因此主视图呈现了许多意见。最简单的部分视图只包含@ Html.Raw(content.Body),其他人使用Content类的属性渲染更多条纹内容:我有一个用于托管图像,一个用于新闻文章等。

然后在你的后端你可以使用Kendo控件(或其他)来编辑ContentBody,ContentTeaser等,只需设置一个适当的ContentType来命名局部视图来渲染它。

希望这会让你足以让你开始。