0

我想出xmlns='http://www.w3.org/2005/Atom'现在提要和条目标签中。但不知道为什么我的入口标签不见了 xmlns='http://www.w3.org/2005/Atom'

这是我想要达到的结果

<?xml version='1.0' encoding='UTF-8'?>
<feed xmlns='http://www.w3.org/2005/Atom' xmlns:batch='http://schemas.google.com/gdata/batch'> 
  <entry xmlns='http://www.w3.org/2005/Atom' xmlns:app='http://www.w3.org/2007/app' xmlns:sc='http://schemas.google.com/structuredcontent/2009' xmlns:scp='http://schemas.google.com/structuredcontent/2009/products'>

这是我的代码

builder = Nokogiri::XML::Builder.new(:encoding => 'UTF-8') do |xml|
  xml.feed('xmlns' => 'http://www.w3.org/2005/Atom',
           'xmlns:batch' => 'http://schemas.google.com/gdata/batch') do
              xml.entry('xmlns' => 'http://www.w3.org/2005/Atom',
                        'xmlns:app' => 'http://www.w3.org/2007/app',
                        'xmlns:sc' => 'http://schemas.google.com/structuredcontent/2009',
                        'xmlns:scp' => 'http://schemas.google.com/structuredcontent/2009/products')
           end
end
4

1 回答 1

0

在 XML 中,xmlns标签由子节点继承。因为entry是 的子节点feed,并且它们具有相同的值xmlns,所以 Nokogiri 可能正在优化子节点上的条目。

于 2012-10-24T05:42:42.063 回答