Mustache.js Index of array loops

Source: Internet
Author: User
Tags index sort

When using mustache as the template engine, you want to take advantage of the index sort of the objects in the array, but find that the array index is not available in mustache, and after a search, it is possible to add an index to the object of the array, as shown below

/html{{#data}}    <span>{{index}}</span>//want index to increment as the loop progresses, the first thought of course is the index of the array, But mustache cannot get {{/data}}//jsvar data = [    {"name": "A",    "age": 12 },    {"name": "B",    "age": "+"}]; // The index can be indexed in the JSON object you want to use  for (var i=0;i<data.length;i++) {        = i;    }

This enables the index to accumulate.

Mustache.js Index of array loops

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.