ActionView :: Template :: Error(未定义的方法......)在本地工作,但不在Heroku上工作

时间:2013-09-14 17:38:58

标签: ruby-on-rails heroku ruby-on-rails-4

我没有遇到以前推送到Heroku的代码的麻烦,但最后一次推动已经搞砸了。唯一改变的不是循环遍历每个student,而是循环遍历每个user

背景

代码在本地工作,但不在Heroku上。在Heroku上引发错误的页面是所有学生的列表(索引)。代码正在做的是循环遍历Users的所有profile_type = "Student"

出于某种原因,它应该尝试访问Student对象上的多态关联(profile),而不应该使用User对象。

从Heroku登录

ActionView::Template::Error (undefined method `profile' for #<Student:0x007f80c5552330>):
35:         <tbody>
36:          <% @students.each do |user| %>
37:           <tr>
38:             <td><%= link_to user.profile.ivywise_id, student_path(user.profile_id) %></td>
39:             <td><%= link_to user.first_name.camelize, student_path(user.profile_id) %></td>
40:             <td><%= link_to user.last_name.camelize, student_path(user.profile_id) %></td>
41:             <td><%= user.email %></td>
app/views/students/index.html.erb:38:in `block in_app_views_students_index_html_erb__3704269538007702833_70095521176320'
app/views/students/index.html.erb:36:in `_app_views_students_index_html_erb__3704269538007702833_70095521176320'

申请代码

student.rb

class Student < ActiveRecord::Base
  has_one :user, :as => :profile, dependent: :destroy
...

students_controller

def index
  @students = User.where(profile_type: "Student").order("last_name")
end

index.html.erb for students

  <% @students.each do |user| %>
  <tr>
    <td><%= link_to user.profile.ivywise_id, student_path(user.profile_id) %></td>
    <td><%= link_to user.first_name.camelize, student_path(user.profile_id) %></td>
    <td><%= link_to user.last_name.camelize, student_path(user.profile_id) %></td>
    <td><%= user.email %></td>
    <td></td>
    <td>
      <%= link_to "Edit", edit_student_path(user.profile_id), class: "btn btn-default btn-small" if can? :edit, Student %>
    </td>
  </tr>
  <% end %>

user.rb

class User < ActiveRecord::Base
  belongs_to :profile, :polymorphic => true

我尝试了什么:

  • 仔细检查本地/ dev的所有迁移是否与Heroku同步
  • 克隆Heroku文件以仔细检查它们是否运行相同的代码库
  • 执行heroku restart命令
  • 仔细检查并运行heroku run rake db:migrate以确保所有内容
  • 仔细检查数据库以确保所有数据和列都相同
  • 我检查过其他机器和浏览器;仍然是同一个问题

绝对令人沮丧......感谢您的帮助!

2 个答案:

答案 0 :(得分:2)

感谢Leo Correa的建议,我在生产模式下启动了rails服务器并能够重现错误。 (我使用RAILS_ENV=production rails s在生产模式下本地启动服务器。)

我将问题缩小到config.eager_load。它最初设置为true,但将其更改为config.eager_load = false解决了问题。

仍然不确定为什么这个问题一开始就存在,但现在已经解决了!

答案 1 :(得分:1)

我遇到了同样的问题,并将config.eager_load设置为true修复了它。然而,这不是生产中的推荐设置,所以我试图找出真正的问题。

我终于意识到这是因为其他一些模型类设置错误(它仍处于开发阶段),即使它与错误模型完全无关。当config.eager_load选项设置为true时,由于优化原因,它会导致Rails在启动时加载所有类。如果某些模型类不正确,那么这会导致事情搞砸,关系可能会变得怪异。

一旦我删除了错误/不完整的模型类,一切都开始重复了。