0

我的一个 EE 模板中有以下内容:

<!-- Set up dynamic js array for notebook data -->
<script type="text/javascript">
notebooks = [{exp:channel:entries channel="product-notebooks" dynamic="no" backspace="1"}
{"entry_id": "{entry_id}",
"notebook_covertext": "{notebook-covertext}",
"notebook_image": "{notebook-image}"}
,{/exp:channel:entries}
]
</script>

基本上我想 {notebook-covertext} 转义或 htmlentity-ize 内容..有人知道我怎么能做到这一点吗?

干杯,约翰。

4

2 回答 2

3

你也可以试试这个隐藏的配置变量

$config['protect_javascript'] = 'y';
于 2012-10-22T20:18:47.433 回答
1

这个插件应该可以解决问题。

"notebook_covertext": "{exp:mah_eencode}{notebook-covertext}{/exp:mah_eencode}",
于 2012-10-03T12:14:16.390 回答