未定义的方法“调用”对于 LiquidView:类
我尝试使用 Liquid 模板引擎插件,但在控制器尝试渲染 .liquid 模板时出现以下错误。
“LiquidView:Class 的未定义方法‘调用’”
product_controller.rb
@product = Product.find(:第一个) 渲染:布局=>假,:模板=> “产品/show.liquid”
产品/show.liquid
产品名称:{{产品名称}}
价格:{{product.price}}
我根据以下方式将其安装为插件 http://wiki.github.com/tobi/ Liquid/getting-liquid-to-work-in-rails
我使用 Rails 2.3.5 和 Ruby 1.8.7。
以前有人遇到过同样的问题吗?
I trying to use Liquid template engine plugin , but I 'm getting the following error while controller tries to render a .liquid template .
"undefined method `call' for LiquidView:Class"
product_controller.rb
@product = Product.find(:first)
render :layout=> false, :template=> "product/show.liquid"
product/show.liquid
Product name : {{product.name}}
Price : {{product.price}}
I installed it as a plugin according to
http://wiki.github.com/tobi/liquid/getting-liquid-to-work-in-rails
I using Rails 2.3.5 and Ruby 1.8.7.
Does anyone had the same problem before ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
问题解决了。
而是使用安装它
脚本/插件安装 http://liquid-markup.googlecode.com/svn/trunk
我刚刚从 github 下载了源代码,解压并将其放在 sellers/plugin 目录中。
现在我可以在我的应用程序上使用 .liquid 视图文件。
谢谢 ...
Problem solved.
Instead installing it using
script/plugin install http://liquid-markup.googlecode.com/svn/trunk
I just downloaded the source from github , extracted and placed it on vendors/plugin directory.
Now I'm able to use .liquid view files on my application .
Thanks ...