- 全局標(biāo)簽
- artlist 文章列表
- models 欄目列表
- modelsartlist 頻道循環(huán)
- type 指定欄目
- include 引用模板
- arcview 單條文檔
- position 面包屑
- assign 定義變量
- empty 為空判斷
- notempty 不為空判斷
- foreach 循環(huán)輸出
- volist 數(shù)據(jù)循環(huán)
- if 條件判斷
- switch 條件判斷
- compare 變量比較
- adv 廣告列表
- load 文件加載
- global 全局變量
- field 字段值
- tags 標(biāo)簽調(diào)用
- searchform 搜索標(biāo)簽
- 常用函數(shù)
- links 友情鏈接
- SQL 數(shù)據(jù)查詢
- weapp 應(yīng)用插件
- range 范圍判斷
- for 數(shù)據(jù)循環(huán)
- ad 單條廣告
- attribute 欄目屬性
- user 會員信息
- diyurl 內(nèi)鏈調(diào)用
- php標(biāo)簽
- hotkeywords 熱門搜索
- notice 站內(nèi)信
- asklist 問答列表
- citysite 城市站點
- navigation 導(dǎo)航菜單
- static 文件引入
- 會員信息(memberlist)
- 會員注銷標(biāo)簽使用方法
- 列表標(biāo)簽
- 內(nèi)容標(biāo)簽
- arcclick 點擊數(shù)
- guestbookform 欄目留言
- beafter 上下篇
- downcount 下載次數(shù)
- relevarticle 相關(guān)文檔
- 擴展標(biāo)簽
- videoplay 視頻播放
- videolist 視頻列表
- memberinfos 文檔關(guān)聯(lián)的會員信息
- attribute 商品參數(shù)
- specialnode 專題文檔
- collect 文檔收藏
- collectnum 收藏數(shù)
- comment 商品評價
- articlepay 文章付費
- downloadpay 下載付費
- form 自由表單
- sppurchase 商品購買
- 商品其它標(biāo)簽欄
- 可視化標(biāo)簽
- 多語言標(biāo)簽
range 范圍判斷
【基礎(chǔ)用法】
標(biāo)簽:range
描述:范圍判斷標(biāo)簽包括in notin between notbetween四個標(biāo)簽,都用于判斷變量是否中某個范圍。
用法:
{eyou:range name='$eyou.field.typeid' value='1,2,3,4' type='in'}
輸出內(nèi)容
{/eyou:range}
屬性:
name='' 變量
value='' 范圍值
type='' 標(biāo)簽類型
type='in' 在指定列表值內(nèi)
type='notin' 不在指定列表值內(nèi)
type='between' 在指定區(qū)間范圍內(nèi)
type='notbetween' 不在指定區(qū)間范圍內(nèi)
涉及表字段:
無
【更多示例】
-------------------------------示例1--------------------------------
描述:當(dāng)前欄目ID在指定列表值1,2,3內(nèi),則顯示“EyouCms”字樣
{eyou:range name='$eyou.field.typeid' value='1,2,3' type='in'}
EyouCms
{/eyou:range}
-------------------------------示例2--------------------------------
描述:當(dāng)前頁面是列表頁、內(nèi)容頁,則顯示“EyouCms”字樣
{eyou:range name='$Think.const.ACTION_NAME' value='lists,view' type='in'}
EyouCms
{/eyou:range}
-------------------------------示例3--------------------------------
描述:當(dāng)前頁面不是首頁、產(chǎn)品模型,則顯示“EyouCms”字樣
{eyou:range name='$Think.const.CONTROLLER_NAME' value='Index,Product' type='notin'}
EyouCms
{/eyou:range}
-------------------------------示例4--------------------------------
描述:當(dāng)前內(nèi)容頁aid在指定區(qū)間范圍1~10內(nèi),則顯示“EyouCms”字樣
{eyou:range name='$eyou.field.aid' value='1,10' type='between'}
EyouCms-在1~10區(qū)間范圍內(nèi)
{/eyou:range}
-------------------------------示例5--------------------------------
描述:當(dāng)前內(nèi)容頁aid不在指定區(qū)間范圍1~10內(nèi),則顯示“EyouCms”字樣
{eyou:range name='$eyou.field.aid' value='1,10' type='notbetween'}
EyouCms-在1~10區(qū)間范圍內(nèi)
{/eyou:range}
-------------------------------示例6--------------------------------
描述:可以使用else標(biāo)簽把between、notbetween兩個用法合并
{eyou:range name='$eyou.field.aid' value='1,10' type='between'}
在1~10區(qū)間范圍內(nèi)
{eyou:else /}
不在1~10區(qū)間范圍內(nèi)
{/eyou:range}
文檔最后更新時間:2023-10-23 17:19:28
未解決你的問題?請到「問答社區(qū)」反饋你遇到的問題