我试图反序化此XML
<s:Body xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<InformationDisclosureResponse xmlns="http://ASD.pl">
<DisclosureReport>
<Number>U/123</Number>
<Created>2017-10-03T15:00:50+02:00</Created>
<SearchCriterion>
<NonConsumerIdentityNumber>
<TaxId>123123123</TaxId>
</NonConsumerIdentityNumber>
<AuthorizationDateSpecified>false</AuthorizationDateSpecified>
<ActAuthorizationDateSpecified>false</ActAuthorizationDateSpecified>
<SearchType>RegularSearch</SearchType>
<SearchCriterionType>TaxId</SearchCriterionType>
</SearchCriterion>
<Requester>
<LegalPerson>
<Name>Test</Name>
<IdentityNumber>
<TaxId>123123123</TaxId>
</IdentityNumber>
<SeatAddress>
<Line>asd 72</Line>
</SeatAddress>
</LegalPerson>
<LoginFullName>ASD</LoginFullName>
</Requester>
<Summary>
<InformationCount>2</InformationCount>
<TotalArrears>
<Amount>123321.52</Amount>
<Currency>PLN</Currency>
</TotalArrears>
</Summary>
<PositiveInformationSummary>
<ProvidersCount>0</ProvidersCount>
</PositiveInformationSummary>
<Report>
<ObligationInformations>
<ObligationInformation category="0">
<Debtor>
<Entrepreneur>
<Name>ASDASD</Name>
<AddressForMail>
<Line>ASD ASD</Line>
</AddressForMail>
<SeatAddress>
<Line>ASD123</Line>
</SeatAddress>
<NonConsumerIdentityNumber>
<TaxId>123123123</TaxId>
</NonConsumerIdentityNumber>
<FirstName>ASD</FirstName>
<Surname>ASD</Surname>
</Entrepreneur>
</Debtor>
<Provider>
<LegalPerson>
<Name>ASD</Name>
<IdentityNumber>
<TaxId>123123123</TaxId>
</IdentityNumber>
<SeatAddress>
<Line>Asd, asd</Line>
</SeatAddress>
<RegistrationNumber>123123</RegistrationNumber>
<RegistryName>ASD</RegistryName>
<Regon>123123</Regon>
<Ekd>123S/07</Ekd>
</LegalPerson>
</Provider>
<Title>Fd-dasd</Title>
<Type>Invoice</Type>
<PaymentDate>2017-04-20T00:00:00+02:00</PaymentDate>
<NoObjections>true</NoObjections>
<CallSent>2017-05-29T00:00:00+02:00</CallSent>
<Debt>
<Amount>123.80</Amount>
<Currency>PLN</Currency>
</Debt>
<Arrears>
<Amount>321.80</Amount>
<Currency>PLN</Currency>
</Arrears>
</ObligationInformation>
</ObligationInformations>
</Report>
</DisclosureReport>
</InformationDisclosureResponse>
</s:Body>
使用课程
class ReportResponse{
/**
* @var DisclosureReport
*
* @JMS\Type("DisclosureReport")
* @JMS\SerializedName("DisclosureReport")
*/
public $disclosureReport;
//geter
}
class DisclosureReport{
/**
* @var string|null
*
* @JMS\Type("string")
* @JMS\SerializedName("Number")
*/
public $number;
/**
* @var string|null
*
* @JMS\Type("string")
* @JMS\SerializedName("Created")
*/
public $created;
/**
* @var SearchCriterion|null
*
* @JMS\Type("SearchCriterion")
* @JMS\SerializedName("SearchCriterion")
*/
public $searchCriterion;
/**
* @var Requester|null
*
* @JMS\Type("Requester")
* @JMS\SerializedName("Requester")
*/
public $requester;
/**
* @var Summary|null
*
* @JMS\Type("Summary")
* @JMS\SerializedName("Summary")
*/
public $summary;
/**
* @var PositiveInformationSummary|null
*
* @JMS\Type("PositiveInformationSummary")
* @JMS\SerializedName("PositiveInformationSummary")
*/
public $positiveInformationSummary;
/**
* @var Report|null
*
* @JMS\Type("Report")
* @JMS\SerializedName("Report")
*/
public $report;
//geters
}
class Report{
/**
* @var ArrayCollection|null
*
* @JMS\Type("ArrayCollection<ObligationInformation>")
* @JMS\SerializedName("ObligationInformations")
* @JMS\XmlList(entry="ObligationInformation")
*/
public $obligationInformations;
/**
* @var ArrayCollection|null
*
* @JMS\Type("ArrayCollection<PaidObligationInformation>")
* @JMS\SerializedName("PaidObligationInformations")
* @JMS\XmlList(entry="PaidObligationInformation")
*/
public $paidObligationInformations;
}
每一件事都解析好了,但带有ObligationInformation的ArrayCollection并没有。即使使用array
类型,仍然会获得空的ArrayCollection。
尝试使用不同版本的JMS/Serializer-bundle
(当前我使用1.1.0
和jms / serializer 1.5.0
)的属性类别,但没有成功。
调试时我发现https://github.com/schmittjoh/serializer/blob/1.5.0/src/JMS/Serializer/XmlDeserializationVisitor.php#L158我得到空数组。 $entityName
是ObligationInformation
,就像沙箱PHP中的http://sandbox.onlinephpfunctions.com/code/9f6213c5937f8e1cc78e46c710ae1a0f009338d5一样,但是我得到了数据。
什么时候在我的应用程序中的沙盒中,结果与沙盒中的结果相同。但是在这个$data
的沙盒$xml
的JMS文件中,我得到空数组的原因?
答案 0 :(得分:1)
您的问题是您在dl
中定义了错误的XML命名空间
元件。尝试在没有它的情况下进行反序列化,它应该可以解决问题。
答案 1 :(得分:0)
我找到了解决此问题的临时解决方案。
在JMS标记XmlList
中将enrty定义为child::*
现在它看起来像:
@JMS\XmlList(entry="child::*")
它的确有效!但它的解决方法......但仍然......