如何将json数据循环到Mustache模板

时间:2019-05-11 23:09:54

标签: php json ajax mustache

通过ajax以json格式获取数据

$.ajax({

url:baseURL+"Trips/search_for_trip",
data:data,
type:'post',
dataType:'json',
success:function(data){


  var template = $("#trip-template").html();

  var info = Mustache.to_html(template,data);

 $("#all_trips").html(info);


}

});


这是我的模板

<script id="trip-template" type="text/template">

<li><strong>Title:</strong> {{first_name}}</li>


</script>

我如何遍历此模板中的所有数据? 我尝试过

{{#result}}

{{/result}}

但这对我不起作用

0 个答案:

没有答案