我尝试使用 Liquid 模板引擎插件,但在控制器尝试呈现 .liquid 模板时出现以下错误。
“LiquidView:Class 的未定义方法‘调用’”
product_controller.rb
@product = Product.find(:first) 渲染 :layout=> false, :template=> "product/show.liquid"
product/show.liquid
产品名称:{{product.name}}
价格:{{product.price}}
我根据 http://wiki.github.com/tobi/liquid/getting-liquid-to-work-in-rails将它安装为插件
我使用 Rails 2.3.5 和 Ruby 1.8.7。
以前有人遇到过同样的问题吗?