Rails 3 迁移如何使用我的 ApplicationHelper 和 WidgetsHelper 中的方法?

发布于 2024-11-28 01:50:01 字数 931 浏览 1 评论 0原文

我创建了一个迁移来重新格式化数据库中的一些内容(将格式为“my-name-city-state”的友好链接添加到我的商店记录中),但是 rake db:migrate 失败并且 说

undefined method `make_friendly_link' for #<ActiveRecord::ConnectionAdapters::SQLite3Adapter:0x3f90f30>

当我的迁移尝试访问 StoresHelper 中的 make_Friendly_link 方法时

。我尝试显式包含 ApplicationHelper 和 StoresHelper,但它仍然失败。

我的迁移是:

class FriendlyLinkForEveryone < ActiveRecord::Migration
  include ModelHelper
  include ApplicationHelper
  include StoresHelper

  def self.up
    Store.find(:all).each do |store|
      puts "STORE: #{store.name} #{store.city} #{store.state}"
      if store.friendly_link.blank?
        store.update_attributes :friendly_link => make_friendly_link(store.name, store.city, store.state) 
      end
    end
  end

  def self.down
  end
end

make_Friendly_link 方法位于我的stores_helper.rb 中,它调用我的application_helper.rb 中的方法

I've created a migration to reformat a few things in the database (adding a friendly link in format 'my-name-city-state' to my Stores records), but rake db:migrate fails and says

undefined method `make_friendly_link' for #<ActiveRecord::ConnectionAdapters::SQLite3Adapter:0x3f90f30>

when my migration tries to access the method make_friendly_link in my StoresHelper.

I tried explicitly including the ApplicationHelper and StoresHelper, butit still fails.

My migration is:

class FriendlyLinkForEveryone < ActiveRecord::Migration
  include ModelHelper
  include ApplicationHelper
  include StoresHelper

  def self.up
    Store.find(:all).each do |store|
      puts "STORE: #{store.name} #{store.city} #{store.state}"
      if store.friendly_link.blank?
        store.update_attributes :friendly_link => make_friendly_link(store.name, store.city, store.state) 
      end
    end
  end

  def self.down
  end
end

The make_friendly_link method is in my stores_helper.rb and it calls a method in my application_helper.rb

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

软甜啾 2024-12-05 01:50:01

有点黑客,但你可以这样做:

v = ActionView::Base.new
v.make_friendly_link(store.name, store.city, store.state)

Kind of hack, but you can do:

v = ActionView::Base.new
v.make_friendly_link(store.name, store.city, store.state)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文