Rails 4和模板保留字

时间:2015-01-22 19:29:31

标签: ruby-on-rails templates

我有一个Rails 4应用程序,我已经创建了一个模板模型。当我尝试在视图中从该模型中获取某些数据时,我遇到了问题,例如:

<%= Template.where(:key_name => 'email_layout').first.content %>

它说:

ActionView::Template::Error: undefined method `where' for ActionView::Template:Class

我该怎么办?

提前谢谢。

1 个答案:

答案 0 :(得分:4)

你可以使用

 ::Template.where(....)

和Rails会找到正确的模型。