Tag: sitemap

Rails sitemap_generator未初始化常量?

我正在尝试使用Rails站点map_generator gem为8,000,00页面站点生成站点地图。 gem可以在这里找到: https : //github.com/kjvarga/sitemap_generator 这是我在sitemap.rb中的代码: require ‘rubygems’ require ‘sitemap_generator’ # Set the host name for URL creation SitemapGenerator::Sitemap.default_host = “http://www.mysite.com” SitemapGenerator::Sitemap.create do add ‘/content.aspx?page=privacypolicy’ Product.find_each do |product| add product_path(ppid), :lastmod => content.updated_at end end 但是,当我跑 >> ruby sitemap.rb 我收到一条错误消息: sitemap.rb:9:在`block in’中:未初始化的常量SitemapGenerator :: Interpreter :: Product(NameError) 但是“Product”是我的模型的正确名称。 为什么会这样? 我正在运行Rails 3.1.2和Ruby 1.9。