我已经尝试了很多这样的排列:
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 ∙ 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 ∙ 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