2
<assetset:getattributevalues name="sachin" attribute="Date_SV" listvarname="date_sv" typename="Content_Att" />

以上通常是编写模板代码时获取Flex属性值的代码。实际上typename用于指定 Flex Attribute 类型。

Page 属性的代码是什么?其次,“typename”值应该是什么来获取Page属性的值?

4

2 回答 2

2

下面是一个用于获取页面属性 "article" 的示例:

<%
        Session ses = SessionFactory.getSession();
        AssetDataManager mgr =(AssetDataManager) ses.getManager( AssetDataManager.class.getName() );
        AssetId id = new AssetIdImpl( "Page",new Long(ics.GetVar("cid")));
        List attrNames = new ArrayList();
        attrNames.add( "articles" );
        AssetData data = mgr.readAttributes( id, attrNames );
        AttributeData articlesData = data.getAttributeData( "articles" );
        List<AssetId> relatedArticles = null ;
        if (articlesData != null) {
            relatedArticles=(List<AssetId>) articlesData.getData();
        }
%>

但是,如果您使用的是 WCS 12g,我不建议您使用此方法:最好使用控制器。新的理念是读取 groovy 控制器中的所有资产,然后使用 JSTL 在 JSP 中呈现资产的值。

以下是 groovy 控制器的一些代码:

public Map readAsset(String type, String name) {
    Map assetMap = newAssetReader()
    .forAssetName(type, name)
    .selectAll(true)
    .selectImmediateOnlyParents(true)
    .includeLinks(true)
    .includeLinksForBlobs(true)
    .read();
}
Map myPage = readAsset("Page","Home")
models.put("homePage",myPage)

这是您的 JSP 中的代码:

<%@ taglib prefix="cs" uri="futuretense_cs/ftcs1_0.tld"%>
<%@ taglib prefix="ics" uri="futuretense_cs/ics.tld"%>
<%@ taglib prefix="fragment" uri="futuretense_cs/fragment.tld"%>
<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<cs:ftcs>
     Here is the full page asset : ${homePage} <br/>
     Here is just the page name : ${homePage.name} <br/>
</cs:ftcs>

享受易用性...

于 2016-09-02T13:45:20.790 回答
0
<assetset:getattributevalues name="sachin" attribute="Date_SV" listvarname="date_sv" typename="PageAttribute"

类型名之间应该"PageAttribute"没有任何空格。

于 2017-06-22T15:06:45.797 回答