python suds - 将原始 xml 节点插入工厂创建的对象中
在python suds中,如何将原始XML节点插入到通过factory.create方法创建的对象中,同时仍然维护属性?我可以使用一些 _child 字段吗?基本上,如何将 s:any child 与 Raw() 一起使用?
我需要发送的内容:
<web:Script Format="raw">
<raw_xml_node foo="bar">stuff</raw_xml_node>
</web:Script>
我使用以下内容创建脚本对象:
>>> scr = client.factory.create('Script')
>>> scr._Format = "raw"
>>> print scr
(Script){
_Format = "raw"
}
相关 WSDL:
<s:complexType name="Script">
<s:sequence>
<s:any/>
</s:sequence>
<s:attribute name="Format">
<s:simpleType>
<s:restriction base="s:string">
<s:enumeration value="xhtml"/>
<s:enumeration value="raw"/>
</s:restriction>
</s:simpleType>
</s:attribute>
</s:complexType>
In python suds, how do I insert a Raw XML node into an object created via the factory.create method, while still maintaining attributes? Is there some _child field I could use? Basically, how do I use an s:any child with Raw()?
What I need to send:
<web:Script Format="raw">
<raw_xml_node foo="bar">stuff</raw_xml_node>
</web:Script>
I create the Script object with:
>>> scr = client.factory.create('Script')
>>> scr._Format = "raw"
>>> print scr
(Script){
_Format = "raw"
}
Relevant WSDL:
<s:complexType name="Script">
<s:sequence>
<s:any/>
</s:sequence>
<s:attribute name="Format">
<s:simpleType>
<s:restriction base="s:string">
<s:enumeration value="xhtml"/>
<s:enumeration value="raw"/>
</s:restriction>
</s:simpleType>
</s:attribute>
</s:complexType>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论