看官网的帮助手册的产品模块的数据库表 p_image 是图片, p_content_images_list 是图片集
默认模版调用图片是 {$image } ,依此理解调用图片集的图片是这样调用 {$content_images_list}
但是这样调用图片集里只有一张图片是这个正常显示图片的,但是图片集里有2张或以上的图片是没有图片显示的。
所以调用图片集的第一张图片应该这样调用{$=ii_get_lrstr('{$content_images_list}', '|', 'left')}
说明,这个调用是列表页的,首页调用的话要加调用节点,然后你懂的。
1、列表页调用图片集第一张图片的缩略图
<img src="{$=ii_get_actual_route('thumbnail/images')}/156-126-1-1/{$=#ngenre}/{$=ii_get_lrstr("{$content_images_list}", "|", "left")}" onerror="this.src = '{$=ii_get_actual_route('thumbnail')}?p={$=base64_encode('image=' . $GLOBALS['ngenre'] . '/' . ii_get_lrstr("{$content_images_list}", "|", "left") . ';width=156;height=126;scale=1;watermark=1')}';" height="121" width="151"/>
2、调用节点调用某模块图片集第一张图片缩略图
<img src="{$=ii_get_actual_route('thumbnail/images')}/125-95-1-1/{$=#ngenre}/{$=ii_get_lrstr("product/{$content_images_list}", "|", "left")}" onerror="this.src = '{$=ii_get_actual_route('thumbnail')}?p={$=base64_encode('image=' . $GLOBALS['ngenre'] . '/' . ii_get_lrstr("product/{$content_images_list}", "|", "left") . ';width=125;height=95;scale=1;watermark=1')}';" height="95" width="125"/>