小胡子样本模板

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了小胡子样本模板相关的知识,希望对你有一定的参考价值。

  1. <script type="text/javascript" src="https://github.com/janl/mustache.js/raw/master/mustache.js"></script>
  2. <script type="text/javascript">
  3. data = {
  4. name : "Text",
  5. array : ["Item1","Item2","Item3"],
  6. myFunction: function () {
  7. return function(text, render){
  8. text = render(text);
  9. replacementText = "New Text";
  10. return replacementText;
  11. }
  12. }
  13. };
  14.  
  15. var template = "<h1>{{name}} vs. {{#myFunction}}{{name}}{{/myFunction}}</h1><ul>{{#array}}<li>{{.}}</li>{{/array}}</ul>";
  16.  
  17. html = Mustache.to_html(template, data);
  18.  
  19. document.write(html);
  20. </script>

以上是关于小胡子样本模板的主要内容,如果未能解决你的问题,请参考以下文章

键入安全的胡子模板

Vue不会在我的组件的胡子模板({{}})中呈现内容

一起学Vue之模板语法

在 Mustache.js 模板中使用时,Rateit 插件不起作用

Vue 不会在我的组件的 mustache 模板 ( ) 中呈现内容

vue底层之mustache初识