J5增加PDF附件下載功能
1、模塊管理增加att字段,選擇29附件管理器
2、模板代碼
<table class="table table-striped m-0">
<tbody>
<tr>
<th class="border-top-0">
附件下載:
</th>
<td class="border-top-0">
<a href="{$=$htmlEncode($getValueFromJSON(#att, '0->filepath'))}" alt="{$=$htmlEncode($getValueFromJSON(#att, '0->filename'))}" target="_blank">{$=$htmlEncode($getValueFromJSON(#att, '0->filename'))}
</a>
</td>
<td class="border-top-0">
<a href="{$=$htmlEncode($getValueFromJSON(#att, '1->filepath'))}" alt="{$=$htmlEncode($getValueFromJSON(#att, '1->filename'))}" target="_blank">{$=$htmlEncode($getValueFromJSON(#att, '1->filename'))}
</a>
</td>
</tbody>
</table>
到此完工。
下列方法無上傳附件文章id有報(bào)錯(cuò)。
2、模板調(diào)用{$=$render('global.render.pdf',$jsonDecode(#att))}
3、pdf節(jié)點(diǎn)代碼如下:
<table class="table table-striped m-0">
<tbody>
{@}<tr>
<th class="border-top-0">
附件下載:
</th>
<td class="border-top-0">
<a href="{$filepath}" alt="{$filename}" target="_blank">{$filename}
</a>
</td>
</tr>
{@}
</tbody>
</table>