我正在尝试在Symfony2上使用FOSRestBundle和JMSSerializerBundle构建API。我成功地用json输出完美地运行它。但是XML输出并不好。它运行,生成XML数据,但由于xml标记名称,数据无用。
use JMS\Serializer\Annotation;
....
....
....
/**
* Version
* @return Response
*
* @Annotation\XmlKeyValuePairs
*
* @ApiDoc(
* resource=true,
* description="Method for API Version",
* statusCodes={
* 200="Success"
* },
* parameters={
* }
* )
*/
public function versionAction () {
$response = [
'code' => 200,
'message' => 'api version',
'data' => [
'version' => '0.0.1',
'lastupdate' => '2015-11-21 23:29:00',
'now' => (new \DateTime())->format('Y-m-d H:i:s')
]
];
return $response;
}
<?xml version="1.0" encoding="UTF-8"?>
<result>
<entry>200</entry>
<entry><![CDATA[api version]]></entry>
<entry>
<entry><![CDATA[0.0.1]]></entry>
<entry><![CDATA[2015-11-21 23:29:00]]></entry>
<entry><![CDATA[2015-11-22 00:41:30]]></entry>
</entry>
</result>
这里的问题是XML标签都是“入口”。我想要的是这样的:
<?xml version="1.0" encoding="UTF-8"?>
<result>
<code>200</code>
<message>api version</message>
<data>
<version>0.0.1></version>
<lastupdate>2015-11-21 23:29:00</lastupdate>
<now>2015-11-22 00:41:30</now>
</data>
</result>
我正在使用@Annotation\XmlKeyValuePairs
作为文档说,但无法得到我想要的结果。在here上有一个修复程序,它正在运行,但它不是一个好的解决方案,因为该文件来自作曲家。
我不知道我是否遗漏了某些内容,或者它是JMSSerializerBundle或Symfony2中的错误,还是我必须使用其他注释来使XmlKeyValuePairs工作?
答案 0 :(得分:0)
看看这样的事情https://github.com/schmittjoh/JMSSerializerBundle/issues/59#issuecomment-374888667 这对我来说是个大问题
<?php
namespace Ekv\System\Tmp\JmsSerializer;
use Doctrine\Common\Annotations\AnnotationRegistry;
use JMS\Serializer\Annotation\XmlKeyValuePairs;
use JMS\Serializer\Annotation\XmlList;
use JMS\Serializer\Annotation\XmlRoot;
/** @XmlRoot("api_result") */
class JmsXmlSerModel
{
/**
* @var array
* @XmlList(inline = true, entry = "item")
* @XmlKeyValuePairs
*/
private $array = array(
'key-one' => 'foo',
'key-two' => 1,
'nested-array' => array(
'bar' => 'foo',
),
'without-keys' => array(
1,
'test'
),
'mixed' => array(
'test',
'foo' => 'bar',
'1_foo' => 'bar'
),
1 => 'foo'
);
public function __construct($inArr)
{
$this->array = $inArr;
$this->init();
}
protected function init()
{
new XmlRoot();
new XmlList();
new XmlKeyValuePairs();
// https://stackoverflow.com/q/14629137/1101589
// \Doctrine\Common\Annotations\AnnotationRegistry::registerAutoloadNamespace(
// 'JMS\Serializer\Annotation',
// PATH_ROOT.'/vendor/jms/serializer/src'
// );
}
public static function usage($inputArray)
{
$serializer = \JMS\Serializer\SerializerBuilder::create()->build();
$xml = $serializer->serialize(new self($inputArray), 'xml');
//pa($res);
pa($xml);exit;
}
}