如何以编程方式获取 etherpad 的实时明文内容?

发布于 2024-09-29 10:30:03 字数 64 浏览 4 评论 0原文

这个问题出现在 etherpad-open-source-discuss 邮件列表上,我认为把它放在这里会很有用。

This question came up on the etherpad-open-source-discuss mailing list and I thought it would be useful to have it here.

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

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

发布评论

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

评论(5

暗地喜欢 2024-10-06 10:30:03

只需像这样构造一个 URL 并获取它:

http://dtherpad.com /ep/pad/export/foo/latest?format=txt

这将获取 http: 的实时纯文本内容: //dtherpad.com/foo

例如,在 PHP 中,您可以使用

file_get_contents("http://dtherpad.com/ep/pad/export/foo/latest?format=txt")

获取它,请注意,这是只是每个垫的导入/导出菜单中提供的“导出为纯文本”链接。

Just construct a URL like so and fetch it:

http://dtherpad.com/ep/pad/export/foo/latest?format=txt

That will get the live, plaintext contents of http://dtherpad.com/foo

For example, in PHP you can grab it with

file_get_contents("http://dtherpad.com/ep/pad/export/foo/latest?format=txt")

Note that that's just the "export to plain text" link that's provided in the Import/Export menu of every pad.

无人问我粥可暖 2024-10-06 10:30:03

其他一些可能性:

A few other possibilities:

  • From a browser, you can hit http://your-etherpad-server.com/ep/pad/view/padId/latest?pt=1
  • From within the code of the collaborative editor (ace2_inner.js), use rep.alltext
  • Within the Etherpad's javascript, use pad.text for the most recent version of pad.getRevisionText(rev.revNum) for a specified previous revision.
橘虞初梦 2024-10-06 10:30:03

看来 Ari 在其回复中提到的 javascript 函数不再存在于当前版本的 Etherpad 中,如 http: //etherpad.mozilla.org

但是,您现在可以简单地在 eherpad 的 javascript 中使用以下 javascript 函数来获取最新版本的文本

padeditor.ace.exportText()

It seems that the javascript functions mentioned by Ari in his response are no longer present in the current versions of Etherpad as implemented on sites like http://etherpad.mozilla.org

However you can now simply use the following javascript function, within eherpad's javascript to get the text of the latest revision

padeditor.ace.exportText()
七秒鱼° 2024-10-06 10:30:03

您可以使用 jQuery 获取 etherpad 的明文内容,如下所示:

jQuery(document).ready(function(){
    jQuery('#export').click(function(){
        var padId = 'examplePadIntense';//Id of the div in which etherpad lite is integrated
        var epframeId = 'epframe'+ padId;
        var frameUrl = $('#'+ epframeId).attr('src').split('?')[0];
        var contentsUrl = frameUrl + "/export/txt";
        jQuery.get(contentsUrl, function(data) {
            var textContent = data;
        });
    });
});

You can get the plaintext content of etherpad using jQuery as:

jQuery(document).ready(function(){
    jQuery('#export').click(function(){
        var padId = 'examplePadIntense';//Id of the div in which etherpad lite is integrated
        var epframeId = 'epframe'+ padId;
        var frameUrl = $('#'+ epframeId).attr('src').split('?')[0];
        var contentsUrl = frameUrl + "/export/txt";
        jQuery.get(contentsUrl, function(data) {
            var textContent = data;
        });
    });
});
层林尽染 2024-10-06 10:30:03

您还可以使用 getText HTTP API 检索记事本的内容。

有关更多详细信息,请参阅我的其他答案

You can also use the getText HTTP api to retrieve the contents of a pad.

See my other answer for more details.

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