Created
July 2, 2013 10:23
-
-
Save Chrysweel/5908221 to your computer and use it in GitHub Desktop.
Get the error from a form and send this error by rest
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public function createAction(Request $request) | |
{ | |
$entity = new Channel(); | |
$form = $this->createForm(new ChannelType(), $entity); | |
$form->bind($request); | |
if ($form->isValid()) { | |
$this->get('api.model.channel_manager')->save($entity); | |
$view = $this->view($entity, 201); | |
return $this->handleView($view); | |
}else{ | |
$form->getErrorsAsString(); //this return errors | |
$form->getErrors(); // this return array empty | |
} | |
$view = $this->view($form, 400); | |
return $this->handleView($view); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment