1

我正在尝试在创建文件时将文件附加到 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"}

我正在使用带有 kanso 0.2.2 和 db 0.1.0 的 CouchDB 1.3.1。

4

1 回答 1

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);
        }
      });

    }
  );
});

这种方法需要以下两个插件:

于 2013-07-13T20:38:36.700 回答