ExtJS 支持 OOXML 或 ODF 文件的解码吗?

发布于 2024-10-28 07:43:48 字数 130 浏览 5 评论 0原文

我想开发一个网络办公项目,就像 Google Docs 一样,ExtJS 似乎不错。 ExtJS 可以原生读取 OOXML 或 ODF 吗?或者是否有任何开源项目可以帮助ExtJS解码OOXML或ODF文件并编辑它们?

非常感谢!

I want to develop a web office project just like Google Docs and ExtJS seems good. Can ExtJS read OOXML or ODF natively? Or is there any open source project which can help ExtJS decode OOXML or ODF files and edit them?

Many Thanks!

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

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

发布评论

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

评论(4

奢欲 2024-11-04 07:43:48

ExtJS 是一个客户端 JavaScript 框架。它无法读取任何文件,无论是 OOXML、ODF 或 PDF。您是否正在尝试显示文件或下载文件? ExtJS 不涉及文件处理。

ExtJS is a client side javascript framework. It cannot read any files be it OOXML,ODF or PDF. Are you trying to display a file or download it? there is no file handling involved with ExtJS.

陈年往事 2024-11-04 07:43:48

尝试查看 odf javascript 框架: http://webodf.org/demo/

try to look at odf javascript framework: http://webodf.org/demo/

稚气少女 2024-11-04 07:43:48

您需要使用 PHP 之类的服务器端脚本来读取该文件。然后使用 AJAX 将其传递给客户端。

ExtJS 具有 AjaxRequest 方法,您可以使用该方法从服务器获取数据。然后将响应文本传递到用于显示文件的元素的 value 属性。

我自己很快就会从事类似的工作。

You'll need to read the file with a server side script using something like PHP. Then pass this to the client side using AJAX.

ExtJS has the AjaxRequest method which you can use to get data from the server. Then pass the response text to the value property of the element you're using to display the file.

Going to be working on something similar myself soon.

请帮我爱他 2024-11-04 07:43:48

如果您只想在客户端应用程序中预览 google 文档,请获取该文档的预览 url(每个文档都应该有一个),然后在 extjs 应用程序的 iframe 中显示该文档。

If all you want to do is preview the google doc in your client side application, grab the preview url of the doc (every doc should have one) then display that document in an iframe in your extjs application.

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