Android Couchbase - 附件的 URI

发布于 2025-01-02 07:32:20 字数 161 浏览 2 评论 0原文

我的一些 couchdb 附件是 html 文件。我想在 webview 中使用这些 html 文件。为此,我需要附件的完整 URL。如何获取这些附件的完整路径?我应该使用哪些 API。我正在使用适用于 Android 的 Couchbase 库和 Ektorp 客户端库。

谢谢, 普拉莫德

Some of my couchdb attachments are html files. I want to use those html files in the webview. To do this, I need the complete url to the attachment. How do I get the full path to those attachments? Which APIs should I use. I am using Couchbase library for android and Ektorp Client library.

Thanks,
Pramod

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

痴骨ら 2025-01-09 07:32:20

我得到了解决方案。

当 couchdb 服务启动时,将使用 hostport 值调用 ICouchBaseDelegate 方法 onCouchBaseStarted。这是存储的,并且在 couchdb dbName 内的文档 doc 中附件 a.html 的 url 构造如下:

url = "http://" + host + ":" + port + "/" + dbName + "/" + doc + "a.html"

I got the solution.

When the couchdb service is started, the ICouchBaseDelegate method onCouchBaseStarted is called with host and port values. This is stored and The url for an attachment a.html in a document doc inside a couchdb dbName is constructed like this :

url = "http://" + host + ":" + port + "/" + dbName + "/" + doc + "a.html"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文