在方法调用中使用 ruby​​ 块

发布于 2024-11-15 04:33:28 字数 452 浏览 4 评论 0原文

下面的代码可以完美运行。

@doc = open(link) { |f| Hpricot(f) }

但我想使用以下代码,它似乎与 Hpricot 块配合得不好(例如 @doc 是 TempFile 对象,而不是 Hpricot 文档对象)

@doc = resolve_link(link) { |f| Hpricot(f) }

def resolve_link(link)
  begin
    return open(link)
  rescue
    logger.debug("#{$!} for link #{link}")
    raise Exceptions::ErrorResolvingLink.new("Cannot resolve link #{link}.")
  end
end

知道如何让代码的第二个版本正常工作吗?

The following code works perfectly.

@doc = open(link) { |f| Hpricot(f) }

But I want to use the following code, which doesn't seem to play well with the Hpricot block (e.g. @doc is a TempFile object, not a Hpricot document object)

@doc = resolve_link(link) { |f| Hpricot(f) }

def resolve_link(link)
  begin
    return open(link)
  rescue
    logger.debug("#{$!} for link #{link}")
    raise Exceptions::ErrorResolvingLink.new("Cannot resolve link #{link}.")
  end
end

Any idea how I can get the second version of the code to work?

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

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

发布评论

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

评论(2

微暖i 2024-11-22 04:33:28

您正在使用块调用 resolve_link,但没有将该块向下传递给 open。试试这个:

def resolve_link(link, &block)
  begin
    return open(link, &block)
  #...

You're calling resolve_link with a block but you're not passing that block down to open. Try this instead:

def resolve_link(link, &block)
  begin
    return open(link, &block)
  #...
金兰素衣 2024-11-22 04:33:28

您必须使用 yield 来调用该块。

请参阅此答案以获得一个非常简单的示例:

Ruby 中的块和收益

所以类似的事情

def resolve_link(link)
    ...
    yield ( some_value_to_pass_to_the_block )
    ...
end

应该有效。

You have to use yield to invoke the block.

See this answer for a very simple example:

Blocks and yields in Ruby

So something along the lines

def resolve_link(link)
    ...
    yield ( some_value_to_pass_to_the_block )
    ...
end

Should work.

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