我需要根据文件夹{{ name }}
显示一些图片。
我的文件名称如下所示:
现在我需要对模糊 -image做一些事情。这是我尝试过的,但没有成功:
{{ files:listing folder='1' }}
{{ if { helper:strpos haystack='[[ name ]]' needle='_blur' } }}
{{ files:image id='{{ id }}' }}
{{ endif }}
{{ /files:listing }}
目前它什么也没做。似乎strpos
始终返回false
。我有什么想法吗?
答案 0 :(得分:0)
对于name
变量,您应该使用与id
相同的花括号:
{{ files:listing folder='1' }}
{{ if { helper:strpos haystack='{{ name }}' needle='_blur' } }}
{{ files:image id='{{ id }}' }}
{{ endif }}
{{ /files:listing }}
答案 1 :(得分:0)
自己得到了,感谢Leon Stafford:
只需删除括号[[ ]]
和其周围的quotes
{{ files:listing folder='1' }}
{{ if { helper:strpos haystack=name needle='_blur' } }}
{{ files:image id='{{ id }}' }}
{{ endif }}
{{ /files:listing }}