0

这是 Smarty 模板文件的内容...

{foreach from=$productcustomfields item=customfield}
<tr>
  <td class="fieldarea">{$customfield.name}:</td>
  <td>{$customfield.value}</td>
</tr>
{/foreach}

当 {$customfield.value} 在屏幕上呈现时,该数组值中的任何 HTML 标记都会在浏览器中显示为纯文本。我怎样才能让 Smarty 实际呈现 HTML 标签而不是将它们作为文字文本?

例如,如果 $customfield.value 的值是...

<strong>Hello</strong>

它会在浏览器中显示,而不是应有的Hello

4

1 回答 1

1

尝试

{$customfield.value nofilter}

(见参考

于 2013-10-15T07:23:09.453 回答