我有一个 javascript 块,用于显示我希望在页面上每 n 次包含的广告。
我使用 Mustache 作为我的模板语言,但无法弄清楚如何包含 js,因此它作为脚本运行,而不仅仅是作为字符串插入。
<script id="mustache-post-advert" type="text/mustache">
<article id="post-{{id}}" class="post">
{{{ <script type="text/javascript">GA_googleFillSlot("MPU")</script> }}}
</article>
</script>
我已经尝试过三重 { 我希望它会逃脱,但遗憾的是它没有。