python suds - 将原始 xml 节点插入工厂创建的对象中

发布于 2024-11-06 20:15:47 字数 924 浏览 3 评论 0原文

在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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文