0

localhost:3000 では問題なく読み込みますが、Heroku にデプロイすると、次のエラーが表示されます。ラン

heroku logs --tail

2013-08-29T04:38:23.403690+00:00 app[web.1]: Connecting to database specified by DATABASE_URL
2013-08-29T04:38:26.898295+00:00 app[web.1]: [2013-08-29 04:38:26] INFO  WEBrick 1.3.1
2013-08-29T04:38:26.898295+00:00 app[web.1]: [2013-08-29 04:38:26] INFO  ruby 2.0.0 (2013-06-27) [x86_64-linux]
2013-08-29T04:38:26.898634+00:00 app[web.1]: [2013-08-29 04:38:26] INFO  WEBrick::HTTPServer#start: pid=2 port=11226
2013-08-29T04:38:27.010520+00:00 heroku[web.1]: State changed from starting to up
2013-08-29T04:38:28.496863+00:00 app[web.1]: Started GET "/" for 50.148.15.124 at 2013-08-29 04:38:28 +0000
2013-08-29T04:38:28.642277+00:00 app[web.1]: Processing by EventsController#index as HTML
2013-08-29T04:38:29.529140+00:00 heroku[router]: at=info method=GET path=/ host=afternoon-gorge-1648.herokuapp.com fwd="50.148.15.124" dyno=web.1 connect=5ms service=1081ms status=500 bytes=643
2013-08-29T04:38:29.541662+00:00 app[web.1]:   Rendered events/_event.html.erb (320.3ms)
2013-08-29T04:38:29.541795+00:00 app[web.1]:   Rendered events/index.html.erb within layouts/application (743.9ms)
2013-08-29T04:38:29.542093+00:00 app[web.1]: Completed 500 Internal Server Error in 900ms
2013-08-29T04:38:29.544607+00:00 app[web.1]: 
2013-08-29T04:38:29.544607+00:00 app[web.1]: ActionView::Template::Error (undefined method `name' for nil:NilClass):
2013-08-29T04:38:29.544607+00:00 app[web.1]:     3:   <td><%= event.title %></td>
2013-08-29T04:38:29.544607+00:00 app[web.1]:     4:   <td><%= event.location %></td>
2013-08-29T04:38:29.544607+00:00 app[web.1]:     5:   <td><%= event.description %></td>
2013-08-29T04:38:29.544607+00:00 app[web.1]:     6:   <td><strong><%= link_to event.user.name, event.user %></strong></td>
2013-08-29T04:38:29.544607+00:00 app[web.1]:     7:   <td><%= link_to 'Show', event %></td>
2013-08-29T04:38:29.544607+00:00 app[web.1]:     8:   <% if current_user == event.user %>
2013-08-29T04:38:29.544607+00:00 app[web.1]:     9:     <td><%= link_to 'Edit', edit_event_path(event) %></td>
2013-08-29T04:38:29.544607+00:00 app[web.1]:   app/views/events/_event.html.erb:6:in `_app_views_events__event_html_erb___4373324357052961172_69914882818260'
2013-08-29T04:38:29.544790+00:00 app[web.1]:   app/views/events/index.html.erb:20:in `_app_views_events_index_html_erb___3028579038251132182_69914889655380'
2013-08-29T04:38:29.544790+00:00 app[web.1]:   app/controllers/events_controller.rb:9:in `index'

ローカルのデータベースと Heroku のデータベースが一致することを確認済みです。アプリはログイン時にのみ失敗します。ログアウトすると、ランディング ページが正常に読み込まれます。これは、データベースに新しい 7 つの新しいユーザー フィールド、すべての文字列を追加したときに発生しました。ラン

rake db:migrate 

ローカル。

ラン

heroku run rake db:migrate.

Heroku のリンクは次のとおりです: http://afternoon-gorge-1648.herokuapp.com/

問題がどこにあるのか非常に混乱しています。

更新: イベントのインデックス ページは次のとおりです。

<% if user_signed_in? %>
  <div class="hero-unit">
    <h1>Sign up for any of the following events!</h1>
  </div>
  <h1>Listing events</h1>
  <table class="table table-striped">
    <thead>
      <tr>
        <th>Image</th>
        <th>Title</th>
        <th>Location</th>
        <th>Description</th>
        <th>Posted by</th>
        <th></th>
        <th></th>
        <th></th>
      </tr>
    </thead>
    <tbody>
     <%= render @events %>
    </tbody>
  </table>
  <br/>
  <%= link_to 'Add New Event', new_event_path, class: "btn btn-primary btn-large" %>
<% else %>
  <%= render 'pages/home' %>
<% end %> 

_event.html.erb パーシャルを呼び出します。

<tr>
  <td><%= image_tag event.image(:medium) %></td>
  <td><%= event.title %></td>
  <td><%= event.location %></td>
  <td><%= event.description %></td>
  <td><strong><%= link_to event.user.name, event.user %></strong></td>
  <td><small><%= link_to 'Show', event %></small></td>
  <% if current_user == event.user %>
    <td><small><%= link_to 'Edit', edit_event_path(event) %></small></td>
    <td><small><%= link_to 'Delete', event, method: :delete, data: { confirm: 'Are you sure?' } %></small></td>
  <% end %>
</tr>
4

2 に答える 2

0

render 部分短縮形を呼び出そうとしています。ただし、省略形は単一のオブジェクトにのみ使用できますが、オブジェクトのコレクションを渡そうとしています。@events代わりに、ループしてそれぞれの結果eventをローカルとしてパーシャルに渡す必要があります。

# app/views/events/index.html.erb
<% @events.each do |event| %>    
    <%= render :partial => 'events', :locals => {:event => event} %>
<% end %>

呼び出した構文が機能しない理由を詳しく理解するには、セクション3.4.4 Passing Local Variables in the Rails Guidesを参照してください。基本的に、_event.html.erbパーシャルは単一のオブジェクト (ローカル変数を介してアクセスする) を期待eventしていますが、代わりに、複数のEventオブジェクトのコレクションを渡しています。したがって、ローカル変数eventsはパーシャルで使用できますが、使用できeventません。

event変数 (存在しない)の属性/関係にまだアクセスしようとしているため、NilClassエラーが発生しています。したがって、各イベントをループし、そのイベントをパーシャルに明示的に渡すと、エラーが解決するはずです。

于 2013-08-29T05:45:57.060 に答える
0

eventブロックからの多くのオブジェクトの1つとして通過していると思います(のようなもの@events.each do |event|...)。データのないイベント行を生成する不適切なシード データがありますか? 実行heroku run rails cして、events = Event.allそこに奇妙に見えるデータ (null) があるかどうかを確認できます。

編集:エラーの詳細を確認することも役立ちます。オブジェクトまたは他の何かでname呼び出されていますか?event

于 2013-08-29T04:38:19.300 に答える