我正在製作一個用於學習目的的Rails博客引擎。我想用液體作爲模板引擎。我有這樣的事情在導軌中使用液體3
## posts_controller.rb
...
def index
@posts = Post.all
end
...
## posts/index.html.liquid
{% for post in posts do %}
{{ post.title }}
{% endfor %}
這給了我以下錯誤:
undefined local variable or method `template' for
#<PostsController:0x103d16290>
我已經LiquidView加載初始化/ liquid.rb 請讓我知道什麼是我的問題。 謝謝
你打'在PostsController template'地方?你的初始化器是什麼樣的?更多細節=更好的答案。 – coreyward 2011-03-28 00:58:28
我在PostsController中沒有模板方法。這裏是我的初始化程序:require'extras/liquid_view' ActionView :: Template.register_template_handler:liquid,LiquidView 。只是認爲液體會像哈姆那樣神奇地工作。 – Voidx 2011-03-28 01:25:31
好吧,我經歷了液體文檔,它確實沒有多大幫助。任何人都知道建立一個軌道應用程序加載液體本地文件或知道這樣做的開源項目,請幫助我。非常感謝。 – Voidx 2011-03-28 03:22:00