通过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}}
但这对我不起作用