我正尝试在netsuite数据库的PDF中显示结果,但是某些结果带有引号,因此结果不完整,请尝试在每个变量的末尾添加“?Html”,但不影响我想要的专栏。 希望您能帮我,问候!
Netsuite Advanced PDF模板-Freemarker
<table cellmargin="5"><#list results as result><tr>
<td style="width: 150px;">
<#if result.custitem_gg_item_image?length != 0><img src="https://----com${result.custitem_gg_item_image}" style="width: 125px; height: 125px;"/><#else><img src="https:/---.com" style="width: 125px; height: 125px;"/></#if>
</td>
<td><strong style="font-size: 12pt"><u><span>${result.itemid?html}</span></u></strong><br/><br/><strong style="font-size: 10pt"><span>${result.displayname?html}</span></strong><br/><br/>
<#if result.purchasedescription?length != 0><span>${result.purchasedescription?html}</span><#else><span>${result.salesdescription?html}</span></#if></td>
</tr>
</#list>
</table>
答案 0 :(得分:1)
仅在字段值中使用引号不会引起任何问题。您在销售和购买说明中也有html吗?通常,您不应该这样做-将html保留为storeedetaileddescription字段。
如果说明中的问题实际上是html,请参见以下答案:Remove HTML tags in Freemarker Template