后台的新闻列表 如果新闻中没有图片 则让其不显示图片 用if标签怎么实现
<td>{$i}</td> <td>{$v.title}</td> <td>{$v.type}</td> <td class="text-c"> <img src="__ROOT__/{$v.images}" width="50" height="50"/> </td> <td>{$v.dateandtime}</td>
学习是最好的投资!
假设你的$v['images'] 没有图片时为空则判断 <if condition="$v['images'] neq '' "><img src="__ROOT__/{$v.images}" width="50" height="50"/></if>
$v['images']
<if condition="$v['images'] neq '' "><img src="__ROOT__/{$v.images}" width="50" height="50"/></if>
要是你的$v['images'] 没有图片时有一个默认值(例如: '/public/index/')则判断 <if condition="$v['images'] neq '/public/index/' "><img src="__ROOT__/{$v.images}" width="50" height="50"/></if>
<if condition="$v['images'] neq '/public/index/' "><img src="__ROOT__/{$v.images}" width="50" height="50"/></if>
这个不用thinkPHP吧,用PHP就能判断吧?
<?php if(isset($v.images)&&!empty($v.images)):?> <img src="__ROOT__/{$v.images}" width="50" height="50"/> <?php endif;?>
假设你的
$v['images']
没有图片时为空则判断
<if condition="$v['images'] neq '' "><img src="__ROOT__/{$v.images}" width="50" height="50"/></if>
要是你的
$v['images']
没有图片时有一个默认值(例如: '/public/index/')则判断
<if condition="$v['images'] neq '/public/index/' "><img src="__ROOT__/{$v.images}" width="50" height="50"/></if>
这个不用thinkPHP吧,用PHP就能判断吧?