gpt4 book ai didi

ruby-on-rails - Ruby 中的 &block 是什么?它是如何在此处的方法中传递的?

转载 作者:数据小太阳 更新时间:2023-10-29 06:21:02 25 4
gpt4 key购买 nike

在 Ruby on Rails 书中看到这段代码。第一个来自 View ,第二个是辅助模块。我不明白 &blockattributes={} 是如何工作的。谁能指导我学习某种解释这一点的教程?

<% hidden_div_if(@cart.items.empty?, :id => "cart") do %>
<%= render(:partial => "cart", :object => @cart) %>
<% end %>

module StoreHelper
def hidden_div_if(condition, attributes = {}, &block)
if condition
attributes["style"] = "display: none"
end
content_tag("div", attributes, &block)
end
end

最佳答案

block 是 ruby​​ 的一个相当基本的部分。它们由 do |arg0,arg1| 分隔... 结束{ |arg0,arg1,arg2| ...

它们允许您指定要传递给方法的回调。可以通过两种方式调用此回调 - 通过捕获通过指定以 & 为前缀的最终参数,或通过使用 yield 关键字:

irb> def meth_captures(arg, &block)
block.call( arg, 0 ) + block.call( arg.reverse , 1 )
end
#=> nil
irb> meth_captures('pony') do |word, num|
puts "in callback! word = #{word.inspect}, num = #{num.inspect}"
word + num.to_s
end
in callback! word = "pony" num = 0
in callback! word = "ynop" num = 1
#=> "pony0ynop1"
irb> def meth_yields(arg)
yield(arg, 0) + yield(arg.upcase, 1)
end
#=> nil
irb> meth_yields('frog') do |word, num|
puts "in callback! word = #{word.inspect}, num = #{num.inspect}"
word + num.to_s
end
in callback! word = "frog", num = 0
in callback! word = "FROG", num = 1
#=> "frog0FROG1"

请注意,我们的回调在每种情况下都是相同的 - 我们可以删除通过将我们的回调保存在一个对象中,然后将其传递给每个对象来重复方法。这可以使用 lambda 捕获对象中的回调来完成,然后通过使用 & 前缀传递给方法。

irb> callback = lambda do |word, num|
puts "in callback! word = #{word.inspect}, num = #{num.inspect}"
word + num.to_s
end
#=> #<Proc:0x0052e3d8@(irb):22>
irb> meth_captures('unicorn', &callback)
in callback! word = "unicorn", num = 0
in callback! word = "nrocinu", num = 1
#=> "unicorn0nrocinu1"
irb> meth_yields('plate', &callback)
in callback! word = "plate", num = 0
in callback! word = "PLATE", num = 1
#=> "plate0PLATE1"

重要的是要理解 & 在这里作为函数最后一个参数的前缀的不同用法

  • 在函数定义中,它将任何传递的 block 捕获到该对象中
  • 在函数调用中,它将给定的回调对象扩展为一个 block

如果您环顾四周,到处都在使用 block ,尤其是在迭代器中,例如 Array#each

关于ruby-on-rails - Ruby 中的 &block 是什么?它是如何在此处的方法中传递的?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/814739/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com