How to get response as json format(application/json) in yii?

后端 未结 8 995
小鲜肉
小鲜肉 2021-01-30 05:08

How to get response as json format(application/json) in yii?

8条回答
  •  滥情空心
    2021-01-30 05:53

    For Yii2 inside a controller:

    public function actionSomeAjax() {
        $returnData = ['someData' => 'I am data', 'someAnotherData' => 'I am another data'];
    
        $response = Yii::$app->response;
        $response->format = \yii\web\Response::FORMAT_JSON;
        $response->data = $returnData;
    
        return $response;
    }
    

提交回复
热议问题