Mustache.js use

Source: Internet
Author: User

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

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.