CouchDb - 在视图中访问复制过滤器
是否可以通过请求视图来使用 couchdb (http://wiki.apache.org/couchdb/Replication#Filtered_Replication) 的复制过滤器功能,fe:
.../_view/candidates?filter=hrtool/myfilter
这将最好根据用户会话或用户角色过滤文档,
提前致谢
fadh
is it possible to use the replication filter feature of couchdb (http://wiki.apache.org/couchdb/Replication#Filtered_Replication) by requesting a view, f.e.:
.../_view/candidates?filter=hrtool/myfilter
This would be nice to filter the documents based on the usersession or userrole
Thanks in advance
fadh
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这可以通过
_list
函数实现。列表函数是 Javascript 代码,它在将视图输出发送到客户端之前对其进行预处理。您可以以任何方式修改视图输出,例如通过过滤某些行。
像任何过滤器功能一样使用此列表“过滤器”:
That is possible with a
_list
function.List functions are Javascript code which pre-process the view output before sending it to the client. You can modify the view output in any way, such as by filtering some rows.
Use this list "filter" like any filter function: