Friday 6 May 2016

Yii response json


// In controller action

\Yii::$app->response->format = \yii\web\Response::FORMAT_JSON;
and then
$items = ['code'=>'1','message'=>'successful','model'=>$model];
        return $items;
[Here Items will be in json format]

No comments:

Post a Comment