假设我在我的 CouchDB 中有一个名为“user/all”的视图和一个 CouchRest ExtendedDocument,如下所示:
class User < CouchRest::ExtendedDocument
property :username
property :password
property :realname
property :role
property :rights
end
我将如何使用此 ExtendedDocument 从该视图中检索密钥“admin”的文档?
(如果我需要对 ExtendedDocument 子类进行更改,应该更改什么?)
非常感谢。