Twitterで検索を行う簡単なコントローラーがあります。Railsコンソールからの検索は正常に機能しますが、これを実行するとスタックオーバーフローエラーが発生し、何が起こっているのか理解できません。私のログファイルには、インデックスメソッドが何度も実行されていることが示されています。
Controller
class TimelinesController < ApplicationController
def index
@timelines = Twitter.search("Ford Edge", :rpp => 3, :result_type => "recent")
respond_to do |format|
format.html index.html.erb
format.json { render json: @timelines }
end
end
end
View
<% @timelines.each do |timeline| %>
<tr>
<td><%= timeline.from_user %></td>
<td><%= timeline.text %></td>
</tr>
<% end %>
どんな考えにも感謝します。ありがとう。