首页 > 代码库 > Yii2 使用json 和设置component 中'format' => yii\web\Response::FORMAT_JSON 的区别

Yii2 使用json 和设置component 中'format' => yii\web\Response::FORMAT_JSON 的区别

 

在Yii2中如果设置了

‘response‘ => [
   ‘format‘ => yii\web\Response::FORMAT_JSON,
   ‘charset‘ => ‘UTF-8‘,
   // ...
 ],

代表了,控制器输出的全部都是json格式数据,即json字符串;

而如果使用Json::htmlEncode($price);

先引入use yii\helpers\Json;

可以在当前的action中生成json字符串,response对象把这个当普通文本输出

Yii2 使用json 和设置component 中'format' => yii\web\Response::FORMAT_JSON 的区别