Prawn - 如何限制表单上的文本区域以匹配 Prawn PDF 报告上的固定区域
我们正在构建一个 Rails 应用程序,使用户能够制作自己的 PDF 小册子。
PDF 文档上有固定高度的部分供用户通过 Web 表单完成。例如,假设用户在第二页底部有半页“关于我”部分。
限制表单上的文本框以便用户只能输入与 PDF 输出上的可用空间一样多的文本的最佳方法是什么?
We're building a Rails app which enables a user to make their own PDF booklet.
On the PDF document there are fixed height sections for the user to complete via a web form. For example lets say the user has a half page 'About me' section at the bottom of the second page.
What's the best way to limit the text box on the form so that the user can only enter as much text as there is space available on the PDF output?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
无法找到一种优雅的方法来用 Prawn 做到这一点。建议仅添加用户在键入时看到的 JavaScript 字符计数,就像 Twitter 的做法一样。
Couldn't find an elegant way to do this with Prawn. Suggest just to add a javascript character count which the users sees as they type, like how twitter does it.