如何绑定pdf的存储注释

时间:2017-06-21 03:32:00

标签: javascript pdfjs annotatorjs

我正在使用annotator.js来注释我的PDF文档。我可以将它保存到我的SQL数据库并检索它。但我不确定如何将数据绑定到特定页面。我使用Pure HTML,JQuery用于AnnotatorJS API调用和REST Web服务以JSON格式发送和接收数据。

我的问题是从SQL数据库中使用检索到的数据并将其绑定到PDF所需的步骤是什么。

有什么建议吗?

1 个答案:

答案 0 :(得分:0)

之前我遇到过类似的问题。试试这个代码。您可以相应地更改代码

var subscription= $('#content').annotator();
subscription.data('annotator').plugins['Store'].loadAnnotationsFromSearch().then(function(res) {
subscription.annotator('loadAnnotations', res.rows); res.rows /// in my case
});