类 | 说明 |
---|---|
GetCategoryAttributeMethod |
getCategoryAttribute 获取分类扩展数据
参数列表
分类id
返回结果
attribute :分类扩展数据(字段编码,value )
使用示例
<#assign attribute=getCategoryAttribute(1)/<
${attribute.title!} |
GetCategoryAttributesMethod |
getCategoryAttributes 获取多个分类扩展数据
参数列表
多个分类id
返回结果
map (id,attribute :分类扩展数据(字段编码,value ))
使用示例
<#assign attributeMap=getCategoryAttributes('1,2,3,4')/<
${attributeMap['1'].title!} |
GetContentAttributeMethod |
getContentAttribute 获取内容扩展数据
参数列表
内容id
返回结果
attribute :内容扩展数据(字段编码,value )
使用示例
<#assign attribute=getContentAttribute(1)/<
${(attribute.text? |
GetContentAttributesMethod |
getContentAttributes 获取多个内容扩展数据
参数列表
多个内容id
返回结果
map (id,attribute :内容扩展数据(字段编码,value ))
使用示例
<#assign attributeMap=getContentAttributes('1,2,3,4')/<
${attributeMap['1'].text? |
GetContentPageMethod |
getContentPage 获取正文分页结果
参数列表
正文
页码
返回结果
page :PageHandler
text :文章正文
使用示例
<#assign textPage=getContentPage(attribute.text,2)/<
${textPage.text? |
GetPlaceAttributeMethod |
getPlaceAttribute 获取推荐位数据扩展数据
参数列表
推荐位数据id
返回结果
attribute :推荐位数据扩展数据(字段编码,value )
使用示例
<#assign attribute=getContentAttribute(1)/<
${(attribute.description)!} |
GetPlaceAttributesMethod |
getPlaceAttributes 获取多个推荐位数据扩展数据
参数列表
多个荐位数据id
返回结果
map (id,attribute :推荐位数据扩展数据(字段编码,value ))
使用示例
<#assign attributeMap=getPlaceAttributes('1,2,3,4')/<
${attributeMap['1'].description!} |
CMS函数 函数是一种FreeMarker轻量级扩展,也同样支持模板定义和java类实现。