Yii2 输出xml格式数据的方法

既然是输出,必然就涉及到web请求与响应了,不熟悉的可以先去了解下HTTP协议。

yii2中支持以下几种返回格式,均可自定义配置。

HTML: implemented by yiiwebHtmlResponseFormatter.

XML: implemented by yiiwebXmlResponseFormatter.

JSON: implemented by yiiwebJsonResponseFormatter.

JSONP: implemented by yiiwebJsonResponseFormatter.

RAW: use this format if you want to send the response directly without applying any formatting.

我们就是冲着XML来的。

先来看一种简单的输出xml格式数据

1
2
3
4
5
6
7
public function actionTest () {
Yii::$app->response->format = yiiwebResponse::FORMAT_XML;
return [
'message' => 'hello world',
'code' => 100,
];
}

这里我们指定了reponse响应格式 FORMAT_XML,然后访问这个test方法就可以看到页面上输出了xml类型的数据

1
2
3
4
<response>
<message>hello world</message>
<code>100</code>
</response>

上面提到的方式未免有点麻烦,麻烦在配置多项的时候就不是那么方便了,我们来自己创建reponse对象试一试

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
public function actionTest () {
return Yii::createObject([
'class' => 'yiiwebResponse',
'format' => yiiwebResponse::FORMAT_XML,
'formatters' => [
yiiwebResponse::FORMAT_XML => [
'class' => 'yiiwebXmlResponseFormatter',
'rootTag' => 'urlset', //根节点
'itemTag' => 'url', //单元
],
],
'data' => [ //要输出的数据
[
'loc' => 'http://********',
],
],
]);
}

为了方便接下来的说明,上面一并做了配置,可以看到我们配置了响应的格式format,单独做了些配置,包括配置根节点rootTag,单元itemTag以及数据类型。有同学注意到了,这里其实我们很简单的就实现了一个站点地图的xml格式输出。

© 版权声明
THE END
喜欢就支持一下吧
点赞12 分享
评论 抢沙发

请登录后发表评论