yii2.0 修改header屬性值

use yii\web\Response;

//修改content-type值
$response = \Yii::$app->response;
$response->format = Response::FORMAT_RAW;
$response->headers->add('Content-Type', 'image/png');

或者:

$response = Yii::$app->response;
$response->format = \yii\web\Response::FORMAT_JSON;
$response->data = ['message' => 'hello world'];

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章