是否可以在A框架中的另一个nunjuck模板文字内部创建nunjuck模板文字?

时间:2018-11-28 16:35:58

标签: javascript aframe nunjucks

我想在“建筑”模板文字中包含“玻璃”模板文字。

<script id="building" type="text/x-nunjucks-template">
  {% for x in range(0, 5) %}
  <a-entity template="src: building.template; type:         handlebars" position="{{ x * 5 }} 0 0">
  </a-entity>
  {% endfor %}
</script>

<script id="glass" type="text/x-nunjucks-template">
  {% for x in range(0, 5) %}
  <a-entity template="src: glass.template; type: handlebars" position="{{ x }} 2 2">
  </a-entity>
  {% endfor %}
</script>

我知道它们需要在.HTML文件中运行-我只是想知道是否可以解决这个问题,所以我可以做到以下几点:

index.html-> building.template-> glass.template

谢谢

1 个答案:

答案 0 :(得分:2)

使用{% raw %}

{% raw %}
  some nunjucks templating
{% endraw %}

它不会在外部模板上呈现。