1
我的代碼:我怎麼能自動增量文檔ID在對的NodeJS Couchbase
bucket.insert("docid", jsonVersion, function (err, response) {
if (err) {
console.log('Failed to save to Couchbase', err);
return;
} else {
res.send('Saved to Couchbase!');
}
});
我怎麼能自動增加文件編號,當我從Web表單的數據。
我正在使用Nodejs和Couchbase。
http://docs.couchbase.com/developer/java-2.1/documents-atomic.html – Hackerman