鉴于我想要 HTML 输出,如何使用 Nokogiri 为某些文本添加 'href' 标签?



我已经尝试了很多这样的排列:

builder = Nokogiri::HTML::Builder.new do |doc|
    doc.html {
        doc.body {
            links.each do |i|
                doc.p {
                    doc.text "#{i.text}"
                } 
                    doc.a["href"] = i[:href]
            end
            }           
        }
end

其中links是包含test:href所需值的数组。

结果是(为简洁而缩写):

This is the HTML generated
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
<html><body>
<p>10 &#8729; Progamer Lim Yohwan, the E-Sports Icon</p>
<a href="http://boxerbiography.blogspot.com/2006/12/10-progamer-lim-yohwan-e-sports-icon.html"></a>

我想让它产生的是:

<p><a href="http://boxerbiography.blogspot.com/2006/12/10-progamer-lim-yohwan-e-sports-icon.html">10 &#8729; Progamer Lim Yohwan, the E-Sports Icon</a></p>

我该怎么做?

使用构建器接口,将属性作为参数提供给doc.tagname调用,并将内容放入块中。所以像这样的代码应该可以达到这个效果:

builder = Nokogiri::HTML::Builder.new do |doc|
    doc.html { 
        doc.body { 
            links.each do |i| 
                doc.p {
                    doc.a(:href => i[:href]) {
                        doc.text i.text # or maybe i[:text]
                    }
                }
            end  
        }    
    }
end

mu是正确的,但这样不是更好吗?

builder = Nokogiri::HTML::Builder.new do |doc|
    doc.html do |html|
        html.body do |body|
            links.each do |i|
                body.p do |p|
                    p.a i.text, :href => i[:href]
                end 
            end
        end
    end
end

相关内容

  • 没有找到相关文章

最新更新