how to Json encode in yii2?

后端 未结 3 1255
时光说笑
时光说笑 2021-01-18 03:36

Attempting to encode json and receive 400: Bad Request in yii2. I am trying to encode in Rest client but it is not working properly.



        
3条回答
  •  被撕碎了的回忆
    2021-01-18 04:17

    public function actionRegister()
    {
        \Yii::$app->response->format = \yii\web\Response::FORMAT_JSON;
        $model = new TblUserRegistration();
        return $_POST['username'];
    }    
    

提交回复
热议问题