我是一只新教区,从1.0.1开始。
I have a very basic issue. I cannot get Mustache Sections to render in a list. Here is my list with the data hard coded from an example.
function(head, req) {
start({
"headers": {
"Content-Type": "text/html"
}
});
var mustache = require("lib/mustache");
var view = {name: "Joe s shopping card",items: ["bananas", "apples"]};
var template = "{{name}}: <ul> {{#items}}<li>{{.}}</li>{{/items}} </ul>";
return mustache.to_html(template,view);
产出:
Joe s shopping card: <ul> <li></li><li></li></ul>
Please help!!!
Thank you, / Jeff