gpt4 book ai didi

javascript - 获取 PouchDB 附件?

转载 作者:行者123 更新时间:2023-12-01 03:37:35 25 4
gpt4 key购买 nike

我正在尝试创建一个可以提出问题并回答问题的网站。为了做到这一点,我有两个文件,一个将问题发送到数据库,另一个输出问题所在的每个 docs 的附件。

Post.js:

db.post({
title: 'question'
}).then(function (response) {
console.log(response)
q = response
}).catch(function (err) {
console.log(err);
});

await sleep(100)
console.log(q.rev)

var attachment = new Blob([{
"title" : title,
"content" : content,
"option" : option,
"spec" : spécialisation,
"year" : year,
"date" : date}, {type: 'text/json'}]);
db.putAttachment(q.id.toString(),'qData', q.rev.toString(), attachment, 'text/json')
.then(function (result) {
console.log(result)
})
.catch(function (err) {
console.log(err);
});

和 view.js :

var all = db.allDocs({
}).then(function (result) {
console.log(JSON.stringify(result.rows))
return result.rows
}).catch(function (err) {
console.log(err);
});

但我无法让它工作,它不输出任何错误,并且我收到的单个输出是没有任何附件的文档。我的(可能是新的)错误是什么?

最佳答案

尝试将以下选项添加到您的 allDocs 调用中:

{
include_docs: true,
attachments: true
}

引用docs关于这两个选项:

options.include_docs: Include the document itself in each row in the doc field. Otherwise by default you only get the _id and _rev properties.

options.attachments: Include attachment data as base64-encoded string.

文档有一个完整的示例,它应该以 base64 字符串形式返回您的附件:

db.allDocs({
include_docs: true,
attachments: true
}).then(function (result) {
// handle result
}).catch(function (err) {
console.log(err);
});
<小时/>

注意:我看到您正在使用 Blob。如果您更愿意将附件作为 Blob 而不是 Base64 字符串,请查看此选项:

options.binary: Return attachment data as Blobs/Buffers, instead of as base64-encoded strings.

关于javascript - 获取 PouchDB 附件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44143705/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com