我正在使用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>
答案 0 :(得分:4)
尝试添加属性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>