我使用Nokogiri生成XML。我想添加一个名称空间前缀到XML根节点,但问题是将前缀应用到第一个元素,它得到适用于所有子元素。
这是我期望的结果:
<?xml version="1.0" encoding="UTF-8"?>
<req:Request xmlns:req="http://www.google.com" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" schemaVersion="1.0">
<LanguageCode>en</LanguageCode>
<Enabled>Y</Enabled>
</req:Request>
尝试添加属性xmlns=""
,这似乎暗示XML构建器元素应该在默认名称空间中,除非另有声明。我相信结果文档在语义上等同于您的示例,尽管它存在…
attrs = {
'xmlns' => '',
'xmlns:req' => 'http://www.google.com',
'xmlns:xsi' => 'http://www.w3.org/2001/XMLSchema-instance',
'schemaVersion' => '1.0',
}
builder = Nokogiri::XML::Builder.new do |xml|
xml['req'].Request(attrs) {
xml.LanguageCode('en')
xml.Enabled('Y')
}
end
builder.to_xml # =>
# <?xml version="1.0"?>
# <req:Request xmlns="" xmlns:req="http://www.google.com" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" schemaVersion="1.0">
# <LanguageCode>en</LanguageCode>
# <Enabled>Y</Enabled>
# </req:Request>