0

在使用淘汰赛时,我经常使用模板。因为我正在开发单页应用程序,所以我使用的模板数量越来越多。

我的主要 html 开始看起来像这样:

<!-- id's for knockout binding -->
<span id='...'>...</span>
<span id='...'>...</span>
....
<span id='...'>...</span>

<!-- templates -->
<script type="text/html" id="template_1">...</script>
<script type="text/html" id="template_2">...</script>
...
<script type="text/html" id="template_100">...</script>

尽管如此,一切都按预期工作,我被大量模板吓倒了,一开始就被加载。

那么关于这个问题是否有任何最佳实践,或者具有良好淘汰经验的人如何处理它?

4

1 回答 1

0

外部模板比将所有模板都放在一个文件中更好。通过拥有外部模板,您可以按需调用它们,而不是一次加载所有模板。因此,外部模板有很多可用的选项。有关更多信息,请查看此外部模板

于 2014-03-10T04:37:37.870 回答