public function actionSignupStepOne()
{
$model = new Signup;
if (Yii::$app->request->isAjax && $model->load(Yii::$app->request->post())) {
if ($user = $model->save()) {
return ['success'=>true];
} else {
Yii::$app->response->format = Response::FORMAT_JSON;
return ActiveForm::validate($model);
}
}
return $this->renderAjax('signup-step-one', [
'model' => $model,
'success'=>false
]);
}
ВО ВЬЮХЕ ДОБАВИЛ <?php if ($success) echo 'good' ?> ничего не происходит и респонс прилетает с 500 ошибкой почему то.