我正在使用'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');
只有一个附件与文件相关联,而不是第二个?
答案 0 :(得分:4)
修订版ID都会更改,因此第二次出现文档更新冲突时,调试可帮助您解决问题的响应