2

我正在编写一个简单的 CMS CouchApp 作为宠物项目。我在 OS X 10.7.4 上运行 CouchDB 1.2.0 并使用 Python CouchApp 开发工具。

基本上我想将页面作为文档,并且页面将引用另一个包含站点共享布局的文档。

页面文档示例:

{
   "_id": "index",
   "_rev": "3-d5451ea54212ae6ec0d8d2d95c5f225d",
   "content": "<img src=\"/images/img.jpg\"/> <p>Lorem ipsum dolor sit amet.</p>",
   "layout": "layouts/default"
}

布局文档示例:

{
   "_id": "layouts/default",
   "_rev": "1-d2fa96e15ab8768828b262d81265f3d2",
   "content": "<!DOCTYPE html> <html><head> <title>Foo</title> </head><body><div>{{content}}</div></body> </html>"
}

所以基本上要呈现一个页面,我需要获取两个文档。然后我会使用 Mustache 将页面呈现到布局中。

我摆弄了一段时间的 show 函数,但找不到在函数中获取布局文档的方法。然后我偶然发现include_docs,我现在正试图使用​​列表函数和视图让它工作。我的地图功能如下:

function(doc) {
    if (doc.layout) {
        emit([doc._id, 1], doc);
        emit([doc._id, 0], {_id: doc.layout });
    }
};

当我在提供参数的浏览器中导航到视图本身时include_docs=true&startkey=["index",0]&endkey=["index",1],它工作得很好并且正在加载布局文档。

但是,布局文档不会传递给列表函数。在上述视图上运行此列表功能

function(head, req) {  
    var doc = null;
    var row = getRow();

    do
    {   
        if (!row.value.layout){
            doc = row.value;
        }
    } while (row = getRow())

    for (i in doc) {
        send(i);
    }
}

...具有相同的参数呈现:

_id

我做了一些谷歌搜索,并注意到CouchDB 中存在一个错误,其中链接的文档没有传递到列表函数。据我所知,这应该已经修复了。这是倒退的情况还是我被削弱了?

4

1 回答 1

4

该行的值存储在 row.value 中,但该行的文档在 row.doc 中。:)

于 2012-09-09T15:19:12.680 回答