是否需要先创建文档,然后再调用pouchdb db.putAttachment函数将数据附加到文档

时间:2015-05-19 02:11:13

标签: pouchdb

问题:

调用pouchdb'putAttachment'函数不会将附件详细信息写入db。

背景

根据pouchdb网站提供的示例,我编写了代码来创建附件(http://pouchdb.com/guides/attachments.html)。

db.putAttachment('mydoc', 'myattachment.png', myBase64String, 'image/png');

问题:

在开始调用db.putAttachment函数创建附件之前,是否需要先创建'mydoc'?

如果'mydoc'文件还没有,那么它将由pouchdb自动创建。

当我调用代码'db.putAttachment'时,没有任何反应(没有创建'mydoc'文档或在数据库中创建附件)

1 个答案:

答案 0 :(得分:1)

不,如果文档不存在,那么PouchDB将为您创建它。