将验证码与 couchdb 结合使用进行反垃圾邮件
有没有办法在 couchdb 应用程序上实现验证码?
我正在我的应用程序上编写一个注册页面,并且我希望能够防止垃圾邮件注册。看来我必须使用 couchdb 旁边的服务器来做到这一点。我希望避免这种情况。 有什么想法吗?
Is there a way to implement captcha on a couchdb app?
I am writing a signup page on my application and I want to have protection against spam signups. It seems that I would have to do that with a server alongside couchdb. I was hoping to avoid that.
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将处于“待处理”状态的文档添加到 CouchDB,然后使用更改侦听器将它们更新为“已批准”状态。
您甚至可以将该代码粘贴在设计文档中,并使用我在节点 http://www 中编写的更改消费者.mikealrogers.com/archives/726
You could add documents to CouchDB in a "pending" state and then use a changes listener to update them to an "approved" state.
You could even stick that code in a design document and use the changes consumer I wrote in node http://www.mikealrogers.com/archives/726