Я новичок в couchdb, работающий с CouchDB 1.0.1.
У меня очень простая проблема.Я не могу отобразить разделы усов в списке.Вот мой список с данными, жестко закодированными из примера.
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>
Пожалуйста, помогите !!!
Спасибо, / Jeff