集成ONLYOFFICE文档以为应用用户提供文档编辑功能 最大程度兼容MS Office格式 立即获取 请求演示 × https://www.youtube.com/embed/O5zQTeX9f-8 在线文档编辑 ONLYOFFICE Docs开发者版旨在为以任何语言编写的网络应用程序提供协作文档、电子表格、演示文稿和表单编辑。 SaaS或现场部署 无论使用何种部署模式(云端或本地部署),您都可以将ONLYOFFICE文档与一切Web解决方案进行集成。 白标 为用户提供品牌化体验:添加应用徽标、自定义编辑器界面、选择显示或隐藏额外按钮。 可伸缩性和集群 ONLYOFFICE文档可进行伸缩以为任意数量的用户提供服务,即使是数千名用户也不在话下。 深受信赖 ONLYOFFICE Docs的好处 Full format compatibility OOXML(docx、xlsx、pptx)以及OpenDocument+其他主流格式 完整列表 支持的编程语言 可与使用任何语言——如.Net (C#)、Node.JS、Java、PHP、Ruby等——编写的应用集成。 代码示例 专业编辑功能 创建专业文件、电子表格、演示文稿和可填写表单的工具 在线演示 轻松部署 选择您的安装选项:Docker、deb、rpm、exe。 立即部署 众多协作功能 在线协同编辑、审校、评论、聊天、版本历史记录 了解更多 详细的集成API 了解将ONLYOFFICE文档集成至应用中所需的一切 立即查看 宏和插件 添加缺失的功能或让请求我们的开发人员介入 查看操作指南 最具安全性 安装于您的机器中配置缓存生命周期、启用JWT保护以避免未经授权的访问。 了解更多 跨浏览器兼容性 可在一切浏览器中实现真正的WYSIWYG与100%查看、打印与分页保真性 与其他套件对比 专业技术支持 获取快速专业的支持服务帮助您解决一切技术问题 自定义 深色、浅色和自定义主题。支持100%、125%、150%、200%的缩放比例。 支持WOPI 通过网络应用开放平台接口(WOPI)协议轻松整合。 通过WOPI和API进行集成比较 发现ONLYOFFICE Docs v7.1:ARM兼容性、升级的PDF/XPS/DjVu查看器、PDF到DOCX的转换功能,工作表的打印预览,以及更多 了解更多关于ONLYOFFICE Docs v7.1 × https://youtube.com/embed/5-ervHAemZc 包含文档生成器 从您的应用程序中生成/修改办公文件,而无需实际运行编辑器。 Docx、xlsx、pptx和pdf文件的生成。 轻量级工具,易于与您的服务集成。 支持所有的编程语言。为.NET、PHP、Node.js、Ruby准备的例子。 检查API 了解更多 我们选择ONLYOFFICE文档,是因为其与MS Office格式高度兼容。现在我们很高兴地宣布,随着集成的完成,使用PowerFolder将变得更加流畅。 Christian Sprajc PowerFolder首席执行官 查看实际效果! 希望查看界面并试用主要功能? 编辑DOCX审阅DOCX批注DOCX更改编辑软件商标DOCX创建OFORM 演示预览</> 打开DOCX进行编辑 × <!DOCTYPE html> <html style="height: 100%;"> <head> <title>打开DOCX进行编辑</title> </head> <body style="height: 100%; margin: 0;"> <div id="placeholder" style="height: 100%"></div> <script type="text/javascript" src="https://documentserver/web-apps/apps/api/documents/api.js"></script> <script type="text/javascript"> window.docEditor = new DocsAPI.DocEditor("placeholder", { "document": { "fileType": "docx", "key": "E7FAFC9C22A8", "title": "Example Document Title.docx", "url": "https://example.com/url-to-example-document.docx" }, "documentType": "text", "editorConfig": { "callbackUrl": "https://example.com/url-to-callback.ashx", }, "height": "100%", "width": "100%" }); </script> </body> </html> 关闭 </> 打开DOCX进行审阅 × <!DOCTYPE html> <html style="height: 100%;"> <head> <title>打开DOCX进行审阅</title> </head> <body style="height: 100%; margin: 0;"> <div id="placeholder" style="height: 100%"></div> <script type="text/javascript" src="https://documentserver/web-apps/apps/api/documents/api.js"></script> <script type="text/javascript"> window.docEditor = new DocsAPI.DocEditor("placeholder", { "document": { "fileType": "docx", "key": "9B5D4A67A9A9", "title": "Example Document Title.docx", "url": "https://example.com/url-to-example-document.docx", "permissions": { "edit": false, "review": true } }, "documentType": "text", "editorConfig": { "callbackUrl": "https://example.com/url-to-callback.ashx", "mode": "edit" }, "height": "100%", "width": "100%" }); </script> </body> </html> 关闭 </> 打开DOCX进行批注 × <!DOCTYPE html> <html style="height: 100%;"> <head> <title>打开DOCX进行批注</title> </head> <body style="height: 100%; margin: 0;"> <div id="placeholder" style="height: 100%"></div> <script type="text/javascript" src="https://documentserver/web-apps/apps/api/documents/api.js"></script> <script type="text/javascript"> window.docEditor = new DocsAPI.DocEditor("placeholder", { "document": { "fileType": "docx", "key": "5C5D4CCA7674", "title": "Example Document Title.docx", "url": "https://example.com/url-to-example-document.docx", "permissions": { "comment": true, "edit": false } }, "documentType": "text", "editorConfig": { "callbackUrl": "https://example.com/url-to-callback.ashx", "mode": "edit" }, "height": "100%", "width": "100%" }); </script> </body> </html> 关闭 </> 打开更换商标后的DOCX × <!DOCTYPE html> <html style="height: 100%;"> <head> <title>打开更换商标后的DOCX</title> </head> <body style="height: 100%; margin: 0;"> <div id="placeholder" style="height: 100%"></div> <script type="text/javascript" src="https://documentserver/web-apps/apps/api/documents/api.js"></script> <script type="text/javascript"> window.docEditor = new DocsAPI.DocEditor("placeholder", { "document": { "fileType": "docx", "key": "D97815D69205", "title": "Example Document Title.docx", "url": "https://example.com/url-to-example-document.docx" }, "documentType": "text", "editorConfig": { "callbackUrl": "https://example.com/url-to-callback.ashx", "customization": { "customer": { "address": "My City, 123a-45", "info": "Some additional information", "logo": "https://example.com/logo-big.png", "mail": "john@example.com", "name": "John Smith and Co.", "www": "example.com" }, "logo": { "image": "https://example.com/logo.png", "url": "https://example.com" } } }, "height": "100%", "width": "100%" }); </script> </body> </html> 关闭 </> 创建OFORM × <!DOCTYPE html> <html style="height: 100%;"> <head> <title>创建OFORM</title> </head> <body style="height: 100%; margin: 0;"> <div id="placeholder" style="height: 100%"></div> <script type="text/javascript" src="https://documentserver/web-apps/apps/api/documents/api.js"></script> <script type="text/javascript"> window.docEditor = new DocsAPI.DocEditor("placeholder", { "document": { "fileType": "oform", "key": "9B5D4A67A9A9", "title": "Example Form Title.oform", "url": "https://example.com/url-to-example-document.oform", "permissions": { "edit": false, "fillForms": true } }, "documentType": "word", "editorConfig": { "callbackUrl": "https://example.com/url-to-callback.ashx", "mode": "edit" }, "height": "100%", "width": "100%" }); </script> </body> </html> 关闭 更多示例 NetExplorer平台中的ONLYOFFICE文档集成让协作更加安全简单:我们为用户提供了在线协同编辑文档的功能,同时还能确保最高级别的安全性与数据主权。 Bertrand Servary NetExplorer总经理 了解用例