4

我有一个 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>

请问我该如何解决?

4

1 回答 1

4

为了在将来帮助其他人解决这个问题,我最终如何通过更改细节行来解决它

从:

xml.g :image_link do xml.text!("http://www.mysite.com/{product.picture}"); end

至:

xml.g :image_link, "http://www.mysite.com#{product.picture}"

感谢:http ://codalicious.wordpress.com/2010/06/16/product-rss-feed-for-google-base/

于 2013-07-17T12:06:02.640 回答