Python Spyne,return 带数组

Python Spyne, return with array

我在 python 2.7 和 django 1.9 中使用 spyne 2.12.14 我想要 return 这样的回复:

?xml version='1.0' encoding='utf-8'?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">

<soapenv:Header/>
    <soapenv:Body>
        <ns2:GetResponse xmlns:ns2="http://test.example.com/test">
            <return>
                <myHeader>
                    <id>1234abc</id>
                    <code>000</code>
                    <message>Success</message>
                </myHeader>
                <MyDetail>
                    <item1>myItem1</item1>
                    <item2>myItem2</item2>
                </MyDetail>
                <MyDetail>
                    <item1>myItem1</item1>
                    <item2>myItem2</item2>
                </MyDetail>
            </return>
        </ns2:GetResponse>
    </soapenv:Body>
</soapenv:Envelope>

但得到这样的回应:

?xml version='1.0' encoding='utf-8'?>
<soapenv:Envelope
xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">

<soapenv:Header/>
    <soapenv:Body>
        <ns2:GetResponse xmlns:ns2="http://test.example.com/test">
            <return>
                <myHeader>
                    <id>1234abc</id>
                    <code>000</code>
                    <message>Success</message>
                </myHeader>
                <MyDetail>
                    <MyDetail>
                        <item1>myItem1</item1>
                        <item2>myItem2</item2>
                    </MyDetail>
                    <MyDetail>
                        <item1>myItem1</item1>
                        <item2>myItem2</item2>
                    </MyDetail>
                </MyDetail>
            </return>
        </ns2:GetResponse>
    </soapenv:Body>
</soapenv:Envelope>

这是我的代码:

class MyHeader(ComplexModel):
    __namespace__ = 'http://test.example.com/test'
    INHERITANCE = None,
    INDICATOR = Sequence,
    _type_info = {
        'id': String,
        'code': String,
        'message': String,
    }

class MyDetail(ComplexModel):
    __namespace__ = 'http://test.example.com/test'
    INHERITANCE = None,
    INDICATOR = Sequence,
    _type_info = {
        'item1': String,
        'item2': String,
    }

class GetResponse(ComplexModel):
    INHERITANCE = None,
    INDICATOR = Sequence,
    _type_info = {
        'myHeader': MyHeader,
        'MyDetail': Array(MyDetail, minOccurs=0, maxOccurs='unbounded')
    }

@rpc(MyObject, _returns=[GetResponse], _out_variable_names=["return"])

    def GetMiniStatement(ctx, MyObjectInfo):
            do_something

有人可以帮忙吗?

你想要一个非包装数组。

删除这个:

     'MyDetail': Array(MyDetail, minOccurs=0, maxOccurs='unbounded')

添加这个:

     'MyDetail': MyDetail.customize(minOccurs=0, maxOccurs='unbounded')

顺便说一句,您的 Array 定义看起来很奇怪,因为通过将 Array 类型的 maxOccurs 设置为大于 1 的值,您正在创建一个包装的非包装数组看起来不像你想要的数组。 (换句话说,您是在告诉 Spyne Array 类型可以多次出现,而不是其中的内容。)

将我的声明更改为 'MyDetail': 数组(MyDetail, maxOccurs='unbounded', wrapped = False) 并且有效。