I'm just getting started with Symfony2 and I'm trying to figure out what the correct approach is for echoing out JSON from a controller (e.g., People
) for use in an ExtJS 4 grid.
When I was doing everything using a vanilla MVC approach, my controller would have method called something like getList
that would call the People
model's getList
method, take those results and do something like this:
<?php
class PeopleController extends controller {
public function getList() {
$model = new People();
$data = $model->getList();
echo json_encode(array(
'success' => true,
'root' => 'people',
'rows' => $data['rows'],
'count' => $data['count']
));
}
}
?>
- What does this kind of behavior look like in Symfony2?
- Is the controller the right place for this kind of behavior?
- What are the best practices (within Symfony) for solving this kind of problem?
I would avoid using a template to render the data as the responsibility for escaping data etc is then in the template. Instead I use the inbuilt json_encode function in PHP much as you have suggested.
Set the route to the controller in the routing.yml as suggested in the previous answer:
The only additional step is to force the encoding in the response.
Simple. Use FOSRestBundle and only return the People object from the controller.
Instead of building your own response you can also use the built-in JsonResponse.
You define the route like in the other answers suggested:
And use the new response type:
For more information see the api or the doc (version 2.6).
use
Yes.
In symfony it looks pretty much alike, but there are couple of nuances.
I want to suggest my approach for this stuff. Let's start from routing:
The
_format
parameter is not required but you will see later why it's important.Now let's take a look at controller
Controller renders data in the format which is set in the routing config. In our case it's the json format.
Here is example of possible template:
The advantage of this approach (I mean using _format) is that it if you decide to switch from json to, for example, xml than no problem - just replace _format in routing config and, of course, create corresponding template.
To use
return new JsonResponse(array('a' => 'value', 'b' => 'another-value');
you need to use the right namespace:As described here: http://symfony.com/doc/current/components/http_foundation/introduction.html#creating-a-json-response