在 Struts 中根据屏幕上的数据创建 PDF
我可以在 struts 操作类中使用 iText api 创建一个简单的 pdf。
应传递到 pdf 中的数据是根据用户搜索参数在屏幕上生成的。
我想知道如何将数据传递到 struts 操作中,以便它可以显示在 pdf 中?
提前致谢。
I am able to create a simple pdf using iText api inside a struts action class.
The data that should be passed into the pdf is generated on screen based on user search parameters.
What I am wondering is how I can pass the data into the struts action so it can be displayed in the pdf?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
类似的问题已经在这里。您只需要将页面上的所有内容传输到 struts action 即可。我会这样做:
JSP:
JS:
这会将所有 HTML 设置为操作类属性hiddenHtml。如果有什么不起作用,请回来,这是我在没有测试的情况下凭空写出来的:)
Similar question is already here. You just need to transfer everything that is on the page to struts action. I would do it like so:
JSP:
JS:
This will set all the HTML to a action class property hiddenHtml. Get back if anything won't work, I wrote this out of my head without a test :)