我如何要求部分?

发布于 2024-08-18 07:11:18 字数 95 浏览 4 评论 0原文

我对 Rails 相当陌生,正在尝试弄清楚如何向 String 类添加方法,并使我的部分中的代码知道 String 类已被添加到。我不确定应该将 require 语句放在哪里。

I'm fairly new to Rails and am trying to figure out how to add a method to the String class and have the code in my partial know that the String class has been added to. I'm not sure where I should put the require statement.

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

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

发布评论

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

评论(2

格子衫的從容 2024-08-25 07:11:18

lib/monkeypatch.rb

class String
  def some_new_func
    ...
  end
end

app/controllers/application.rb:(

require "monkeypatch"

或者,如果您只想要特定控制器的 Monkeypatch,请将 require 放入该控制器中)。

另请参阅:Rails /lib 模块和

lib/monkeypatch.rb

class String
  def some_new_func
    ...
  end
end

app/controllers/application.rb:

require "monkeypatch"

(or, if you only want the monkeypatch for a specific controller, put the require in that controller).

See also: Rails /lib modules and

淡墨 2024-08-25 07:11:18

由于从未使用过Rails,我不确定是否有“更好”的方法来做到这一点,但你可以通过respond_to来做到这一点?方法,像这样:

# extend String class to add new method
class String
  def some_new_func; end
end

# check to see if a String instance has
# that method available
if "test".respond_to? :some_new_func
  puts "Works!"
else
  puts "Doesn't work."
end

# => "Works!"

Having never worked with Rails, I'm not sure if there's a "better" way to do this, but you could do this via the respond_to? method, like this:

# extend String class to add new method
class String
  def some_new_func; end
end

# check to see if a String instance has
# that method available
if "test".respond_to? :some_new_func
  puts "Works!"
else
  puts "Doesn't work."
end

# => "Works!"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文