Heroku的Rails模板错误

当我部署到heroku时,当我尝试创建一个嵌套在蓝图中的新注释时,我抛出并出错。 我已经尝试了很多,甚至不记得这一切都写在这里。 如果我错过了一些明显的东西,请告诉我。 谢谢!

2012-12-18T00:07:26+00:00 app[web.1]: Processing by CommentsController#new as HTML 2012-12-18T00:07:26+00:00 app[web.1]: Parameters: {"blueprint_id"=>"1"} 2012-12-18T00:07:26+00:00 heroku[router]: at=info method=GET path=/blueprints/1/comments/new host=aeh.herokuapp.com fwd=68.200.131.243 dyno=web.1 queue=0 wait=0ms connect=3ms service=44ms status=500 bytes=643 2012-12-18T00:07:26+00:00 app[web.1]: Completed 500 Internal Server Error in 8ms 2012-12-18T00:07:26+00:00 app[web.1]: 2012-12-18T00:07:26+00:00 app[web.1]: app/views/comments/_form.html.erb:29:in `block in _app_views_comments__form_html_erb___740426380689644965_39997500' 2012-12-18T00:07:26+00:00 app[web.1]: 2012-12-18T00:07:26+00:00 app[web.1]: ActionView::Template::Error (undefined method `category' for #): 2012-12-18T00:07:26+00:00 app[web.1]: 30: 
2012-12-18T00:07:26+00:00 app[web.1]: Rendered comments/new.html.erb within layouts/application (5.4ms) 2012-12-18T00:07:26+00:00 app[web.1]: Rendered comments/_form.html.erb (3.1ms) 2012-12-18T00:07:26+00:00 app[web.1]: 28:
2012-12-18T00:07:26+00:00 app[web.1]: 27: 'control-label' %> 2012-12-18T00:07:26+00:00 app[web.1]: app/views/comments/new.html.erb:6:in `_app_views_comments_new_html_erb___765962496684666744_33764340' 2012-12-18T00:07:26+00:00 app[web.1]: 26:
2012-12-18T00:07:26+00:00 app[web.1]: app/views/comments/_form.html.erb:1:in `_app_views_comments__form_html_erb___740426380689644965_39997500' 2012-12-18T00:07:26+00:00 app[web.1]: 2012-12-18T00:07:26+00:00 app[web.1]: 32: 2012-12-18T00:07:26+00:00 app[web.1]: 29: 'text_field' %> 2012-12-18T00:07:26+00:00 app[web.1]: 31:
2012-12-18T00:07:26+00:00 app[web.1]: app/controllers/comments_controller.rb:35:in `new' 2012-12-18T00:07:27+00:00 heroku[web.1]: Stopping all processes with SIGTERM 2012-12-18T00:07:27+00:00 app[web.1]: [2012-12-18 00:07:27] ERROR SignalException: SIGTERM 2012-12-18T00:07:27+00:00 app[web.1]: /usr/local/lib/ruby/1.9.1/webrick/server.rb:90:in `select' 2012-12-18T00:07:28+00:00 heroku[web.1]: Starting process with command `bundle exec rails server -p 46647`

_形成部分如下

  { :class => 'form-horizontal' } do |f| %> 
'control-label' %>
'text_area' %>
'control-label' %>
'number_field' %>
'control-label' %>
'number_field' %>
'control-label' %>
'number_field' %>
'control-label' %>
'text_field' %>
'btn btn-primary' %> t("helpers.links.cancel")), blueprint_comments_path(@blueprint), :class => 'btn' %>

“通过向本地端添加迁移并再次推送到heroku来修复。”