相应主体

Yii::$app->response->content = 'hello world!';

如果在发送给终端用户之前需要格式化,应设置 format 和 data 属性,format 属性指定 data中数据格式化后的样式,例如:

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