0

我正在使用“PHP On Couch”插件通过 php 访问 couchDB。而且我不知道如何在文档中添加多个附件

$client = new couchClient($couch_dsn,$couch_db);
$doc = $client->getDoc('meantime');

$res1 = $client->storeAttachment($doc,'files/file1.html','text/html', 'file1.html');
$res2 = $client->storeAttachment($doc,'files/file2.html','text/html', 'file2.html');

只有一个附件与文档相关联,而第二个则没有?

4

1 回答 1

4

每次附加文件时revision id都会更改,因此第二次出现文档更新冲突,调试将帮助您解决问题的响应

于 2012-11-09T14:03:35.893 回答