For mustache templates, I'm a ready-to-use method, and the following records are just the way I use them. Convenient later make time not to go to the project to find, because really bad looking. (Here-->serious face)
This template is quick to use when you need to render some data lists. (Specific details of the syntax to see the document)
First, you need to add an HTML template section.
<script id= "template" type= "X-tmpl-mustache" >
{{#data}}--list data
Here is just an example, for a list that needs to be looped
<span class= "Item-time pull-right" > Next single Time:{{paytime}}</span>
{{/data}}
</script>
Two. Get the template
var Tmpl = $ (' #template '). html ();
Three. Rendering templates
function Showrecorddata (data) {
Mustache.parse (Tmpl);
var rendered = Mustache.render (Tmpl, {
Datarecord:data,//Data source--Object array
Render:function () {//If there is a need to return different values or HTML fragments depending on the state or type, you can use functions to implement
if (This.type = = Type value) {
Return "....";
} else {
Return "...";
}
}
});
return rendered; Returns the rendered HTML data.
}
Mustache.js use