0
我有一個子應用程序(YetAnotherForum.NET)生活在我的Composite C1站點的子目錄中。爲了保持一致的外觀和感覺,我想爲導航元素提供C1功能。在外部頁面呈現C1功能 - 數據丟失
注意:以下代碼中的所有html標記都已將尖括號替換爲方括號以允許在此處發佈。
我已經想通了,我可以叫使用此語法C1功能:
[f:function ID="Function1" name="Custom.Layout.FooterLinks" runat="server"/]
然而,功能背後的數據似乎是不可用的。任何想法數據問題可能是什麼?也許我需要外部頁面從某種形式的Composite C1頁面繼承?
這裏的功能代碼:
@using Composite.Data; @using Composite.Data.Types; @using Composite.Data.ProcessControlled.ProcessControllers.GenericPublishProcessController; @using CompositeC1Contrib.RazorFunctions; @inherits CompositeC1WebPage @functions { private IEnumerable FooterLinkPages() { IEnumerable pages = DataFacade.GetData(); IEnumerable returnPages; using (DataConnection connection = new DataConnection()) { returnPages = (from l in connection.Get() join p in pages on l.Page equals p.Id where l.PublicationStatus == GenericPublishProcessController.Published && p.PublicationStatus == GenericPublishProcessController.Published orderby l.Position ascending select p).ToList(); } return returnPages; } } [ul class="unstyled"] @foreach (IPage page in FooterLinkPages()) { [li]@(String.IsNullOrWhiteSpace(page.MenuTitle) ? page.Title : page.MenuTitle)[/a][/li] } [/ul]
BTW:我知道這篇文章的 - HTTP://docs.composite。 net/FAQ/Developer?q =如何+ + + + YetAnotherForum + + C1%3F - 對於YAF和C1來說,這只是一點點過時。 – Gavin
請注意,如果是這樣,但如果您在從外部來源獲取數據時遇到問題,這可能與http://docs.composite.net/Data/DataFAQ?q=What+does+%22ThreadDataManager+hasn%27t有關+已被初始化...%22 +異常+平均%3F – mawtex
乾杯mawtex - 差不多!只需要一個DataScope,否則數據有時會在/有時不在(主要不是);) – Gavin