感谢this问题/答案,我能够将一个名称空间属性添加到根元素中。所以现在我有了这个:
代码
from lxml.builder import ElementMaker
foo = 'http://www.foo.org/XMLSchema/bar'
xsi = 'http://www.w3.org/2001/XMLSchema-instance'
E = ElementMaker(namespace=foo, nsmap={'foo': foo, 'xsi': xsi})
fooroot = E.component()
fooroot.attrib['{{{pre}}}schemaLocation'.format(pre=xsi)] = 'http://www.foo.org/XMLSchema/bar http://www.foo.org/XMLSchema/barindex.xsd'
bars = E.bars(label='why?', validates='required')
fooroot.append(bars)
bars.append(E.bar(label='Image1'))
bars.append(E.bar(label='Image2'))
etree.dump(fooroot)
这给了我想要的输出:
输出
<foo:component xmlns:foo="http://www.foo.org/XMLSchema/bar" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.foo.org/XMLSchema/bar http://www.foo.org/XMLSchema/barindex.xsd">
<foo:bars label="why?" validates="required">
<foo:bar label="Image1"/>
<foo:bar label="Image2"/>
</foo:bars>
</foo:component>
问题
为什么fooroot.attrib['{{{pre}}}schemaLocation'.format(pre=xsi)]
需要3个大括号?
1大括号:{pre}
导致ValueError BAD
2个大括号:{{pre}}
在输出 BAD 上生成ns0:schemaLocation
3个大括号:{{{pre}}}
在输出 GOOD 上生成xsi:schemaLocation
我理解字符串的.format
用法,但我想了解为什么我需要3个括号。