1

我试图将这些来自流的推文显示到带有导轨的浏览器

我将在哪里处理控制器中的恒定流?

 TweetStream.track('happy') do |status|

     temp = status.text

     if(temp.include? "http")
         puts "#{status.text}"
     end
 end
4

1 回答 1

1

看看 pusherapp ( https://github.com/pusher/pusher-gem )。

这使您能够打开 websocket 并将数据从您的 rails 应用程序中的后台任务传输到您的 javascript 客户端应用程序。

于 2013-03-11T20:35:24.687 回答