request = Yii::$app->getRequest(); $this->response = Yii::$app->getResponse(); } /** * 渲染 JSON 数据结果 * @param $data * @return string */ public function renderJson($data) { return json_encode($data, JSON_UNESCAPED_UNICODE); } }