我有一个简单的控制器在 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 %>
欣赏任何想法。谢谢。