Handlebars:
Template
Geo-Coordinates :
{{#each cities}}
   {{name}} {{#with location}} {{north}}, {{east}} {{/with}}
{{/each}}
Preparation-Script
// Handlebars.registerHelper('loud', function(string) {
//    return string.toUpperCase()
// });
Input
{
  cities: [
    {
      name: "Darmstadt",
      location: {
        north: 49.87,
        east: 8.64,
      },
    },
    {
      name: "San Francisco",
      location: {
        north: 37.73,
        east: -122.44,
      },
    },
  ],
}
Output
Geo-Coordinates :
   Darmstadt  49.87, 8.64 
   San Francisco  37.73, -122.44 
最后更新: 1/11/2020, 3:46:21 PM