如何在 Joomla 1.5 的模块中使用内置的 pdf 函数
我是 Joomla 的新手。我目前正在使用 Joomla 1.5 进行开发。我正在开发一个表单模块,其功能类似于提供用户填写表单并提交。现在,当用户提交填写的表单时,该模块应生成一个动态 pdf 文件,其中包含所有提交的数据以及相关字段。此外,我必须使用 css
和 html 标签
美化文件的布局。我想使用 Joomla 内置的 pdf
函数来实现此目的。但我不知道如何操作 pdf 生成功能。请帮我解决这个问题。
I am new to Joomla. I am currently using Joomla 1.5 for development. I am developing a form module that functions like providing users to fill up the form and submit it. Now when a user submits the filled up form, this module should generate a dynamic pdf file which includes all the submitted data along with the related fields. Moreover I have to beautify the layout of the file using css
and html tags
. I want to use Joomla built in pdf
function for this. But I have no idea how to manipulate the function for pdf generation. Please help me with this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
仅使用一个模块是无法做到这一点的。 Joomla PDF 库的工作方式(实际上所有 PDF 库的工作方式都类似)是将相应的 HTML 发送到 PDF 库进行渲染。 PDF 库本身不执行任何操作,只是将其提供的内容转换为 PDF。布局和格式均在库外部处理,然后作为完整文档传递到库。您需要一个组件来处理表单输入并将其转换为您想要转换为 PDF 的文档,然后将结果信息提交到库进行显示。
You're not going to be able to do that with just a module. The way the Joomla PDF library works (really all PDF librarys work similarly) is that it sends the corresponding HTML to the PDF library for rendering. The PDF library itself does not do anything but convert what it is given in to a PDF. The layout and formatting is all handled outside the library then passed to the library as a complete document. You would need a component that handles the form input and turns it in to the document you wish to turn in to a PDF, then submits the resulting information to the library for display.