4

如何在页面中包含/引用动态组件模板。我创建了一个动态 CT 并发布了它,但想在页面中呈现它的演示文稿。请建议。

提前致谢,

4

2 回答 2

12

有很多方法可以在页面上添加动态呈现。

直接方法 - 为此,您的组件演示应该被允许在页面上。选中Allow on Page Using Dynamic Assembly。在页面上添加与其他所有相同的演示文稿。

代码方法 - 您可以使用 API 直接从代理存储中获取组件表示。这是相同的示例代码。

*<%@ Import Namespace="Tridion.ContentDelivery.DynamicContent"%>
<%
  ComponentPresentationFactory factory = new ComponentPresentationFactory();
  ComponentPresentation ps = factory.getComponentPresentation("CompID","TEMPLATEID");
  Response.Write(ps.Content);
%>
JSP example:

<%@ page import="com.tridion.dynamiccontent" %>
<% 
  ComponentPresentationFactory cpf = new ComponentPresentationFactory("tcm:0-1-1"); // Publication URI
  // Component URI and Component Template URI
  ComponentPresentation componentPresentation = cpf.getComponentPresentation("CompID", "TEMPLATEID");
  out.println(componentPresentation.getContent());
%>

C#

ComponentPresentationFactory cp_factory = new ComponentPresentationFactory(publicationid);
ComponentPresentation cp = cp_factory.GetComponentPresentation(CompID, TEMPLATEID);
if (cp != null)
  {
     Output = cp.Content;
}
于 2012-10-09T12:09:53.287 回答
6

有多种方法可以在页面上显示动态演示

  • 最简单的方法是将您的动态 CT标记为"Allow on Page Using Dynamic Assembly",然后您将能够将其作为非动态 CT 嵌入到您的页面中

在此处输入图像描述

于 2012-10-09T12:02:30.810 回答