在将Couchbase-lite文档返回给调用者之前,我必须执行一些检查。
For Example:
Document doc = database.getExistingDocument(docId);
doc.putProperties(props);
我想要的是在将退回的文档分配给" doc"之前访问它,并拦截"道具"在新版本提交存储之前。可以借助" BeforeGetListener"和#34; BeforePutListener",因为我有很多获取和放置。
有没有办法拦截Couchbase-lite中的CRUD操作?