我是 couchdb 的新手,我现在正在实施它,看看天气将它用于新项目是否好。所以我搜索我正在使用以下驱动程序使用 Node.js https://github.com/apache/couchdb-nano操作它
这里只是尝试进行 CRUD 操作,所以我只是编写此代码来测试删除文档。
var express = require('express');
var router = express.Router();
var nano = require('nano')('http://127.0.0.8:5984');
var docTest = nano.use('test');
nano.db.destroy("test",function(err,data){
console.log(err);
});)
nano.db.comapact("test",function(err,data){
console.log(err);
});
这给了我以下错误任何想法如何解决它?
TypeError: nano.db.comapact is not a function