未定义的方法“调用”对于 LiquidView:类

发布于 2024-08-29 19:11:56 字数 558 浏览 6 评论 0原文

我尝试使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

装迷糊 2024-09-05 19:11:56

问题解决了。

而是使用安装它
脚本/插件安装 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 ...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文