在我的 lib/tasks/populate.rake 文件中,我必须以正确的 html 格式编写一些硬编码数据并正确对齐。如何将其写入填充文件?有没有办法在编写后解析 HTML 标签?对于随机数据,我知道有 populator gem。但我想要一些硬编码的数据。请一些帮助我。
问问题
212 次
2 回答
0
您需要使用Ruby heredoc语法来对齐您的代码
text = <<END
<p>Whatever you want to write in whatever form</p>
line with spaces in front
Another indented line
Account No. : XYZ
END
text = text.html_safe
结束前不应有空格END
。
于 2012-08-14T07:43:14.967 回答
0
首先在 html 文件中写入 html 数据,然后对齐并验证文件。如果所有内容都已写入,则将文件中的 html 数据复制到lib/tasks/populate.rake
文件中。有许多在线工具可以进行验证。http://validator.w3.org/
于 2012-08-14T07:01:53.543 回答