我有一个 Google 商家中心 XML 脚本,它在每个元素中打印额外的空白,我似乎无法摆脱它
我已经简化了下面的脚本来展示我所追求的。当前脚本:
xml.instruct!
xml.feed 'xmlns' => 'http://www.w3.org/2005/Atom', 'xmlns:g' => 'http://base.google.com/ns/1.0' do
@site.products.find(:all).each do |product|
xml.entry do
xml.g :image_link do xml.text!("http://www.mysite.com/{product.picture}"); end
end
end
end
输出:
<feed>
<entry>
<g:image_link>
http://www.mysite.com/resources/images/pic.jpg
</g:image_link>
</entry>
</feed>
请注意,图像的 url 位于下一行并缩进,这不起作用。我需要的是:
<feed>
<entry>
<g:image_link>http://www.mysite.com/resources/images/pic.jpg</g:image_link>
</entry>
</feed>
请问我该如何解决?