梦想家内容管理系统
----------
### If判断标签
#### 适用版本
Previous_Releases_2.0.0 +
#### 名称
判断标签
#### 功能
用于在页面中作简单的判断,目前只支持eq和neq,且只用于在categoryartlist标签内使用。
#### 语法
```html?linenums
{dreamer-cms:if test="('false' eq [field:haschildren/])"}
[field:typenamecn /]
{/dreamer-cms:if}
```
#### 文件
```java?linenums
cc.iteachyou.cms.taglib.tags.IfTag
```
#### 参数
参数名|描述
:--:|:--
test|表达式(注:一定要用小括号包裹,目前只支持eq和neq。)
#### 底层字段
无
#### 范例
```html?linenums
{dreamer-cms:categoryartlist length="1"}
{dreamer-cms:if test="('true' eq [field:haschildren/])"}
[field:typenamecn /]
{/dreamer-cms:if}
{dreamer-cms:if test="('false' eq [field:haschildren/])"}
[field:typenamecn /]
{/dreamer-cms:if}
{/dreamer-cms:categoryartlist}
```
#### 效果
无