我听说了关于 Mustache 的美妙的事情,并决定试一试。
我想弄清楚如何将 Mustache 模板与 jQuery 一起使用。我已经找了几天了。
小胡子可以在这里找到:https ://github.com/janl/mustache.js/
这是我的尝试:
$.getJSON('get_fullname.asp', {name: 'johnny'}, function(data, status, xhr) {
var template = '<h1>{{NAME}}</h1><p>test</p>';
strHTML = Mustache.to_html(template, data);
$('#container').html( strHTML );
});
我的 JSON 数据返回[{"NAME":"John","MIDDLE":"A","LAST":"Smith"}]
我得到的只是<p>test</p>
。
我也尝试过使用这个模板,但仍然得到<p>test</p>
.
var template = '{{#NAME}}<h1>.</h1>{{/NAME}}<p>test</p>';
我错过了什么?