- PouchDB 教程
- PouchDB - 主页
- PouchDB - 概述
- PouchDB - 环境
- PouchDB - 创建数据库
- PouchDB - 数据库信息
- PouchDB - 删除数据库
- PouchDB - 创建文档
- PouchDB - 阅读文档
- PouchDB - 更新文档
- PouchDB - 删除文档
- PouchDB - 创建批次
- PouchDB - 批量获取
- PouchDB - 批量更新
- PouchDB - 删除批次
- PouchDB - 添加附件
- PouchDB - 检索附件
- PouchDB - 删除附件
- PouchDB - 复制
- PouchDB - 同步
- PouchDB - 杂项
- PouchDB 有用资源
- PouchDB - 快速指南
- PouchDB - 有用的资源
- PouchDB - 讨论
PouchDB - 检索附件
您可以使用getAttachment()方法从 PouchDB 检索附件。此方法始终返回 blob 或缓冲区对象。
句法
以下是getAttachment()的语法。对于此方法,我们必须传递文档 id 和附件 id。此方法还接受可选的回调函数。
db.getAttachment( docId, attachmentId, [callback] );
例子
以下是使用getAttachment()方法检索存储在 PouchDB 中的文档附件的示例。使用此代码,我们尝试从文档001检索附件att_1.txt。
//Requiring the package var PouchDB = require('PouchDB'); //Creating the database object var db = new PouchDB('my_database'); //Retrieving an attachment from a document db.getAttachment('001', 'att_1.txt', function(err, blob_buffer) { if (err) { return console.log(err); } else { console.log(blob_buffer); } });
将以上代码保存在名为Retrieve_Attachment.js的文件中。打开命令提示符并使用节点执行 JavaScript 文件,如下所示。
C:\PouchDB_Examples >node Retrieve_Attachment.js
这将检索文档的附件并显示在控制台上,如下所示。
<Buffer 00>
从远程文档检索附件
您还可以检索远程存储在服务器 (CouchDB) 上的数据库中现有文档的附件。
为此,您需要传递 CouchDB 中数据库的路径(而不是数据库名称),其中包含要读取的文档。
例子
假设CouchDB服务器中有一个名为my_database的数据库。然后,如果您使用 URL http://127.0.0.1:5984/_utils/index.html验证 CouchDB 中的数据库列表,您将获得以下屏幕截图。
如果您选择名为my_database的数据库,您可以查看其内容,如下所示。
假设该文档中有一个附件,如下所示。
以下是检索名为my_database 的数据库中存在的文档001的附件的示例,该数据库存储在 CouchDB 服务器中。
//Requiring the package var PouchDB = require('PouchDB'); //Creating the database object var db = new PouchDB('http://localhost:5984/my_database'); //Retrieving an attachment from a document db.getAttachment('001', 'att_1.txt', function(err, blob_buffer) { if (err) { return console.log(err); } else { console.log(blob_buffer); } });
将上述代码保存在名为Remote_Retrieve_Attachment.js的文件中。打开命令提示符并使用节点执行 JavaScript 文件,如下所示。
C:\PouchDB_Examples >node Remote_Retrieve_Attachment.js
这将检索文档附件并将其显示在控制台上,如下所示。
<Buffer 00>