如何以编程方式获取 etherpad 的实时明文内容?
这个问题出现在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
只需像这样构造一个 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.
其他一些可能性:
rep.alltext
pad.text
获取指定的pad.getRevisionText(rev.revNum)
的最新版本之前的修订版。A few other possibilities:
rep.alltext
pad.text
for the most recent version ofpad.getRevisionText(rev.revNum)
for a specified previous revision.看来 Ari 在其回复中提到的 javascript 函数不再存在于当前版本的 Etherpad 中,如 http: //etherpad.mozilla.org
但是,您现在可以简单地在 eherpad 的 javascript 中使用以下 javascript 函数来获取最新版本的文本
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
您可以使用 jQuery 获取 etherpad 的明文内容,如下所示:
You can get the plaintext content of etherpad using jQuery as:
您还可以使用
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.