我有一个方法
def method1(&block)
#.............
if condition == "yes"
yield if block_given?
{success: :true, value: **value returned from the block**}
else
{is_success: :false, value: get_errors_array() }
end
end
如何从中检索值&block
?应该&block
使用return
关键字吗?