如何按日期分组?使用车把

时间:2018-12-12 15:24:53

标签: json

我有这个输出 pug documentation 如何将日期值分组? 我想显示日期下的所有信息,但是现在我有类似的信息 json output

这是我的html文件

<div class="container" id="container"></div>

 <img src="" alt="">
    <script id="template" type="text/x-handlebars-template">

       {{#each block}}

       <div class="container-info">
           <p>{{formatDate date}}</p>
           <p>{{name}} №{{id}} {{price}}</p>
           <p>{{name:1}}</p>
           <img src="{{image}}" alt="">

       </div>

       {{/each}}


      </script>

还有我的JavaScript

$(document).ready(function(){
    var source   = $("#template").html();
    var template = Handlebars.compile(source);

    $.ajax("/file_1.json").done(function(data){
        var html = template(data);
        $("#container").append(html);
    })
})

我尝试使用这个,但是不起作用 html info 但是我需要这个功能

我如何想到车把? 我尝试查找任何示例,但未找到任何内容

0 个答案:

没有答案