开发者

Mustache section in Couchdb issues

开发者 https://www.devze.com 2023-01-29 08:46 出处:网络
I am a couchdb newbie running CouchDB 1.0.1. I have a very basic issue.I cannot get Mustache Sections to render in a list.

I am a couchdb newbie running CouchDB 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}} &l开发者_运维知识库t;/ul>";
return mustache.to_html(template,view);

Outputs:

Joe's shopping card: <ul> <li></li><li></li></ul>

Please help!!!

Thank you, / Jeff


Oh barf, I just figured it out and it is a little rediculous. Here it is for anyone else who wants to save some time. Add this to your template "{{%IMPLICIT-ITERATOR}}".

So:

var template = "{{name}}: <ul> {{#items}}<li>{{.}}</li>{{/items}} </ul>";

Becomes:

var template = "{{%IMPLICIT-ITERATOR}}{{name}}: <ul> {{#items}}<li>{{.}}</li>{{/items}} </ul>";
0

精彩评论

暂无评论...
验证码 换一张
取 消