checkbox多选字段条件调用不显示问题解决方法

当栏目或者文章增加了checkbox多选字段,在调用时你可能会想到使用以下方法:

{module module=news  num=8 order=displayorder,updatetime} 
{if in_array(1, $t.myflag)}

{/if}
{/module}


但是当前8条数据不包含自定义段字段的属性时,就会出现空白列表问题。如何解决呢?可以参考下面写法:

{module module=news JSON_myflag=1 num=8 order=displayorder,updatetime}  //其中1为多选属性

{/module}


或者下面写法:

{module module=news LIKE_myflag=1 num=8 order=displayorder,updatetime} //其中1为多选属性

{/module}


如果你在使用checkbox字段时遇到以上问题,就试试看吧!

评论