0

我需要访问文档中的富文本字段,但是,如果我阅读选择了正确字段的文档,我不会在数据库响应中收到该字段的值。如何检索富文本字段的数据?

4

3 回答 3

1

Rich text fields are not yet supported. Some very basic RT support is coming in 1.0.4 of the appdev pack, but I don't think you'll be able to use it yet as you would like.

于 2020-02-20T20:33:36.243 回答
0

如果他们信守承诺(每季度发布一次)并在 12 月发布 1.0.3,我希望在 3 月发布 1.0.4。

于 2020-02-26T11:02:53.453 回答
0

我们目前的解决方法:

使用 rt.convertToTHML() 方法将 RTField 转换为 HTML,通过代理将其保存到另一个字段并处理 HTML。适用于只读,嵌入图片需要一些额外的工作

            RichTextItem rt = (RichTextItem) doc.getFirstItem("body");
            String html = rt.convertToHTML(null);
            doc.replaceItemValue("bodyHTML", html);
            doc.save()
于 2020-03-19T10:44:54.493 回答