ruby-on-rails – 在ruby中如何在ruby中编写’do’方法?

参见英文答案 > Blocks and yields in Ruby10个
我一直在Ruby中编写相同的代码模式,看起来它会受益于’do’样式的代码,但我不确定如何编写该方法.

我一直在做这种代码模式,它以相同的代码行开始和结束……

x.increment!(:step_count) # same each time
# ...then some different code each
x.update_column(:step_description,"blerg message") # same each time

我觉得它会受益于’做’这样的东西……

update_steps "blerg message" do
    # ...then some different code each
end

然后在’do’内部每次执行公共代码.

我将如何制作一个可以使用’do’的方法.

谢谢!

编辑:我认为不要关闭它是很重要的,因为我不知道要搜索’block’或’yield’.可能不知道这些术语的人最终可能会搜索“do”.

解决方法

传递一个块作为参数
def my_method(&block)
        do_something_the_same
        yield # calls whatever is inbetween "do" and "end"
    end

相关文章

以下代码导致我的问题: class Foo def initialize(n=0) @n = n end attr_accessor :n d...
这是我的spec文件,当为上下文添加测试“而不是可单独更新用户余额”时,我得到以下错误. require 's...
我有一个拦截器:DevelopmentMailInterceptor和一个启动拦截器的inititializer setup_mail.rb. 但我想将...
例如,如果我有YAML文件 en: questions: new: 'New Question' other: recent: ...
我听说在RSpec中避免它,let,let !,指定,之前和主题是最佳做法. 关于让,让!之前,如果不使用这些,我该如...
我在Rails中使用MongoDB和mongo_mapper gem,项目足够大.有什么办法可以将数据从Mongoid迁移到 Postgres...