2

任何熟悉 N2 CMS 的人?

我刚开始使用它,到目前为止一切都很好,但我有一个问题,我相信你们会知道什么是错的。

我有这个简单的项目类...

using N2;
using N2.Details;
using MVCSite.ContentCMSItems;

[PageDefinition("Home page", Description = "The Page for the home page")]
[WithEditableName]
public class PageItem : AbstractBaseClass
{
/// <summary>
/// There are code snippets to help generate these properties.
/// Look in the snippets directory of the package.
/// </summary>
[EditableFreeTextArea("MainText", 97)]
public virtual string MainText
{
    get { return (string)GetDetail("MainText"); }
    set { SetDetail("MainText", value); }
}

    [EditableFreeTextArea("Home Page Fotter Text", 100)]
    public virtual string FooterText
    {
        get { return (string)GetDetail("Home Page Fotter Text"); }
        set { SetDetail("Home Page Fotter Text", value); }
    }
}

在编辑模式下,N2 CMS 会选择它,我可以创建一个页面并填写所有数据。

一旦完成,我希望在树中看到它,在我的起始页下方,但它永远不会显示。

所有数据都在数据库中,但不在树中,因此一旦创建,我就无法编辑它:(

谁能建议我做错了什么?

谢谢你的时间

特鲁吉利

4

1 回答 1

2

发现了问题,因为我从 N2CMS MVC 示例项目中复制了它继承的 AbstractBaseClass,它包含导致此问题的方法。删除这些后,它现在显示在树中。

特鲁吉利

于 2010-03-15T11:04:47.267 回答