public function actionLogList(){
return Json::encode(['data'=>[],'code'=>200,'msg'=>'列表']);
}
public function actionLogList(){
//返回json对象
Yii::$app->response->format =\yii\web\Response::FORMAT_JSON;
return ['data'=>[],'code'=>200,'msg'=>'列表'];
}
添加,且去除json_encode
Yii::$app->response->format =\yii\web\Response::FORMAT_JSON;