我正在尝试在创建文件时将文件附加到CouchDB文档。
这是HTML代码:
<form>
<input type="hidden" name="type" value="devtest"/>
<input type="file" name="_attachments" id="picture" accept="image/*" multiple/>
<button type="submit">Go</button>
</form>
这是处理上传的JS代码
$(document).on('submit', 'form', function(e) {
e.preventDefault();
var formdata = $(this).serializeObject(); // Provided by a pluign
$(this).find(':file').each(function(k,v) {
formdata[$(this).attr('name')] = $(this).val(); // Treating files
});
// Using the kanso db package
m.db.current().saveDoc(
formdata,
function(err,res) {
console.log('gna');
});
});
这会产生以下错误500消息:
{"error":"doc_validation","reason":"Bad special document member: _attachments"}
我正在使用CouchDB 1.3.1,其中包含kanso 0.2.2和db 0.1.0。
答案 0 :(得分:1)
好吧,我想我已经明白了。我的两个假设被证明是根本错误的。首先,仅使用名为_attachments
的输入字段无法上载附件。其次,CouchDB似乎不接受文件,除非它们应该附加到它的文档。 (我可能在这个问题上错了,但它对我不起作用。)
以下是适用于我的解决方案:
$(document).on('submit', '#userctl form', function(e) {
e.preventDefault()
var data = $(this).serializeObject();
// Use the Kanso API to create a normal document without attachments
m.db.current().saveDoc(
data,
function(err,res) {
// Use ajaxSubmit provided by the jquery.forms plugin to submit the attachments
$('#userctl form').ajaxSubmit({
url: m.db.current().url + '/' + res.id,
data: {
_rev: res.rev // Provide a revision, otherwise the upload fails
},
success: function(res) {
console.log(res);
}
});
}
);
});
这种方法需要以下两个插件: