大虾Ruby文档生成pdf
def generate_report
tablica = []
tablica << 1
Prawn::Document.generate("test.pdf") { tablica.each { |a| text a } }
end
为什么这段代码在Prawn中不起作用???哪个代码是正确的??
def generate_report
tablica = []
tablica << 1
Prawn::Document.generate("test.pdf") { tablica.each { |a| text a } }
end
Why this code doesn't work in Prawn??? Which code is correct??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
因为你传递的是一个数字,而不是一个字符串。
Because you're passing a number, not a string.
试试这个:
您应该在
text
方法中将参数作为“字符串”传递。Try this:
You should pass parameter as 'string' in
text
method.