我试图通过nano使用express 4和强大的功能将多个图像插入couchdb。我可以毫无困难地使用强大的和nano来访问和插入单个文件,但是,当我尝试一个接一个地插入一个文件时,我会遇到冲突错误。我是js和node的新手,我知道我对回调和异步函数的理解是有限的。这就是我现在所拥有的。任何帮助将不胜感激。
function uploadImage(req, res) {
var form = new formidable.IncomingForm(),
files = [],
fields = [];
uploadcount = 1;
form.on('field', function(field, value) {
fields.push([field, value]);
})
form.on('file', function(field, file) {
files.push([field, file]);
var docid = fields[0][1];
getrevision();
function getRevision(){
dbn.get(docid, { revs_info: true }, function(err,body, file){
if (!err) {
exrev = body._rev;
insertImage(exrev);
}else{
console.log(err);
}
});
}
function insertImage(exrevision){
var exrev = exrevision;
fs.readFile(file.path, function (err, data) {
if (err){
console.log(err);}else{
var imagename = docid + "_" + uploadcount + ".png";
dbn.attachment.insert(docid,imagename,data,'image/png',
{ rev: exrev }, function(err,body){
if (!err) {
uploadcount++;
}else{
console.log(err);
}
});
};
});
};
});
form.on('end', function() {
console.log('done');
res.redirect('/public/customise.html');
});
form.parse(req);
};
答案 0 :(得分:0)
我找到了一个解决方案,首先将文件转储到一个临时目录中,然后继续通过nano将文件插入到couchdb中。我无法找到暂停文件流等待couchdb响应的方法,因此这种顺序方法似乎已经足够了。
答案 1 :(得分:0)
这是处理异步调用的问题。由于每个附件插入都需要doc的当前转速,因此您无法并行执行插入操作。只有在收到上一个附件的回复后,才能插入新附件。
您可以使用promise和deferred机制来执行此操作。但是,我个人使用名为“async”的软件包解决了类似的问题。在异步中,您可以使用async.eachSeries()来串行进行这些异步调用。
另一点是关于修订号,你可以使用较轻的db.head()函数,而不是db.get()。转速数字显示在“etag”标题下。你可以得到这样的转速:
// get Rev number
db.head(bookId, function(err, _, headers) {
if (!err) {
var rev = eval(headers.etag);
// do whatever you need to do with the rev number
......
}
});
此外,在每个附件插入后,来自couchdb的响应将如下所示:
{"ok":true,"id":"b2aba1ed809a4395d850e65c3ff2130c","rev":"4-59d043853f084c18530c2a94b9a2caed"}
rev属性将给出新的转号,您可以使用它来插入下一个附件。