我有一个Rails 4应用程序,我已经创建了一个模板模型。当我尝试在视图中从该模型中获取某些数据时,我遇到了问题,例如:
<%= Template.where(:key_name => 'email_layout').first.content %>
它说:
ActionView::Template::Error: undefined method `where' for ActionView::Template:Class
我该怎么办?
提前谢谢。
答案 0 :(得分:4)
你可以使用
::Template.where(....)
和Rails会找到正确的模型。