得到返回的结果集的数量[结果总数] <cms:contentinfo var="info" /> <!-- use "info" for validation --> <c:if test="${info.resultSize > 0}">
<cms:info>标签
info 标签显示系统的运行信息以及底层支撑的
opencms.version: 获取opencms的版本
opencms.url:show the URL to the current file
opencms.uri:show the URI to the current file
opencms.webapp:the name of the web application
opencms.webbasepath:absolute path to the web application
opencms.request.uri:the opencms request URI of the current file
opencms.request.element.uri:the opencms request URI of the current element
opencms.request.folder:the opencms reqeust folder
系统环境
java.vm.name:name of the used Java VM
java.vm.version:version of the used Java VM
java.vm.info:information on Java VM java.vm.vendor: vendor of Java VM os.name: name of the current operating system os.version: version of the OS os.arch:architecture of the OS
<cms:param>标签在其他标签中嵌套使用,用来传递参数
属性: name:必须的 用来确定参数名称 value:参数对应的值。此属性和标签体只能选择使用一个
比如: <cms:param name="eward" value="eward"/>和 <cms:param name="eward">eward</cms:param>等效
常用情形: 1、在使用<cms:img>时,传递相关参数,如: <cms:img width="450" scaleType="1" scaleQuality="85"> <cms:param name="src"><cms:link><cut value="${curProp}"></cms:link></cms:param> <cms:param name="alt"><%=ltb.key("art.bild.altText")%></cms:param> </cms:img> 2、在使用<cms:include>时使用 <cms:include file="../elements/template-nav-top.jsp"> <cms:param name="locale"><%=locale%></cmd:param> <cmsparam name="navpart" value="toprow" /> </cms:include>
<cms:img>标签用于图片的缩放
src:图片的路径 height:图片缩放后的高度 width:缩放后的宽度 scaleColor:图片缩放后的背景颜色 scaleFilter:图片缩放后背景CSS过滤器filter。 scalePosition:图片缩放后的位置 0 全居中 1:下居左 2 下居右 3 下居中 4 左居中 5 右居中 6 上居中 7 上居左 8上居右 scaleQuality:图片缩放后的保存质量 值为0-100 scaleRenderMode:图片缩放渲染模式。 scaleType:图片缩放类型
<cms:img src="/opencms/opencms/alkacon-documentation/documentation_taglib/logo_opencms_png24.png" scaleType="0" width="300" height="60" />
上一页 [1] [2]