请问我在前台内容页调用附件,但是放标签的位置也不显示附件下载,请问有什么实例吗,按照提示调用的标签没反应,
总数量:{dr_count($fujian)}
==============循环遍历显示 - 开始=============
可选:<?php $fujian = dr_arraycut($fujian, 3);?> // 3表示显示几个。 加上这句话在前面,表示从开头开始只显示循环3个文件,不加表示循环全部
开始:
<?php if ($fujian) { $key=0;foreach ($fujian as $c) { ?>
序号: {$key+1}
标题:{$c.title}
描述:{$c.description}
文件原始地址:{dr_get_file($c.file)}
文件的下载地址:{dr_down_file($c.file)}
文件的下载地址并指定文件名字:{dr_down_file($c.file, '新名字')}
图片缩略图:{dr_thumb($c.file, 200, 200)}
图片缩略图带水印:{dr_thumb($c.file, 200, 200, 1)}
缩略图从中间开始剪切,高度宽度固定:{dr_thumb($c.file, 100, 100, 0, 'crop')}
对url地址进行缩略处理:{dr_thumb($c.file, 100, 100, 0, '', 1)}
----------------------------------
{php $myfile=\Phpcmf\Service::C()->get_attachment($c.file);}
调用文件作者:{$myfile.author}
附件名称:{$myfile.filename}
附件大小:{dr_format_file_size($myfile.filesize)}
附件扩展名:{$myfile.fileext}
----------------------------------
<?php $key++;} } ?>
==============循环遍历显示 - 完毕=============
==============只显示第一个文件=============
{php $c = current($fujian);}
文件原始地址:{dr_get_file($c.file)}
文件的下载地址:{dr_down_file($c.file)}
文件的下载地址并指定文件名字:{dr_down_file($c.file, '新名字')}
图片缩略图:{dr_thumb($c.file, 200, 200)}
内容详情中(show.html) 模板中调用方法是:
注意:
1、[字段名]需要换成你定义的具体字段英文名称
2、如果在list循环中调用,需要把[字段名]改成[$t.字段名]