我构建了一个 .erb 文件,其中列出了一堆变量。
<body>
<h1>
<%= header %>
</h1>
<p>
<%= intro1 %>
</p>
<p>
<%= content1 %>
</p>
<p>
<%= content2 %>
</p>
<p>
<%= content3 %>
</p>
</body>
然后我有一个包含变量的文本文件:
header=This is the header
intro1=This is the text for intro 1
content1=This is the content for content 1
content2=This is the content for content 2
content3=This is the content for content 3
我需要从文本文件中获取变量并将它们插入到 .erb 模板中。这样做的正确方法是什么?我想的只是一个 ruby 脚本,而不是整个 rails 站点。它仅适用于小页面,但需要多次执行。
谢谢