在 Joomla 中生成 MS Word 文档
我试图完成的任务:
- 管理员创建带有占位符的 MS Word 文档,该文档将填充 Joomla 数据库中的数据
- 管理员将 MS Word 文件上传到 Joomla 并将其与 SQL 语句连接
- 用户执行“生成 MS Word”功能并获取填充了 MS Word 文档来自数据库的数据。
Joomla 是否有任何组件可以做到这一点? 我已经在我的应用程序中使用互操作库完成了此操作。
What I try to accomplish:
- Admin creates MS Word document with placeholders that will be filled with data from Joomla database
- Admin uploades MS Word file to Joomla and connects it with SQL statement
- User execute "Generate MS Word" function and gets MS Word document filled with data from database.
Is there any components for Joomla that does this?
I have done this in my application using Interop libraries.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最近我使用 phpdocx 和 pclzip 库为 joomla 组件完成了此操作,其中
*.docx 文件是从模板文件生成的。
配置:
初始化变量:
将表单字段与用户参数绑定:
foreach应用程序表单字段:
输出文件:
recently I've done this for a joomla component using phpdocx and pclzip libraries, where
a *.docx file is generated from a template file.
Config:
Initialize variables:
bind form fields with user params:
foreach application form fields:
output the file: