我正在开发一个 ruby on rails -v 3.1.3 应用程序,它需要拉下一个 rss 提要。通过将 feedzirra 添加到我的 gemfile 并运行,我已经成功安装了 feedzirra bundle install
。
在我的控制器中,用于显示我拥有的 rss 提要的页面
@feed = Feed.new(blog_url_here)
我的模型文件夹中有一个名为 Feed.rb 的类,其中包含:
def initialize(endpoint)
atom = Feedzirra::Feed.fetch_and_parse endpoint
@atom = atom.is_a?(Feedzirra::Parser::Atom) ? atom : nil
end
当我加载页面时,我收到“未初始化的常量 Feed::Feedzirra”错误。任何人都知道为什么以及如何解决它?