dove2199 2012-02-05 02:35
浏览 34
已采纳

Symfony2:从控制器回应JSON以在ExtJS 4网格中使用

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?
  • 写回答

6条回答 默认 最新

  • dsvcqvp139098 2012-02-05 08:31
    关注

    Is the controller the right place for this kind of behavior?

    Yes.

    What does this kind of behavior look like in Symfony2?

    What are the best practices (within Symfony) for solving this kind of problem?

    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:

    # src/Scope/YourBundle/Resources/config/routing.yml
    
    ScopeYourBundle_people_list:
        pattern:  /people
        defaults: { _controller: ScopeYourBundle:People:list, _format: json }
    

    The _format parameter is not required but you will see later why it's important.

    Now let's take a look at controller

    <?php
    // src/Scope/YourBundle/Controller/PeopleController.php
    namespace Overseer\MainBundle\Controller;
    
    use Symfony\Bundle\FrameworkBundle\Controller\Controller; 
    
    class PeopleController extends Controller
    {   
      public function listAction()
      {
        $request = $this->getRequest();
    
        // if ajax only is going to be used uncomment next lines
        //if (!$request->isXmlHttpRequest())
          //throw $this->createNotFoundException('The page is not found');
    
        $repository = $this->getDoctrine()
              ->getRepository('ScopeYourBundle:People');
    
        // now you have to retrieve data from people repository.
        // If the following code looks unfamiliar read http://symfony.com/doc/current/book/doctrine.html
        $items = $repository->findAll();
        // or you can use something more sophisticated:
        $items = $repository->findPage($request->query->get('page'), $request->query->get('limit'));
        // the line above would work provided you have created "findPage" function in your repository
    
        // yes, here we are retrieving "_format" from routing. In our case it's json
        $format = $request->getRequestFormat();
    
        return $this->render('::base.'.$format.'.twig', array('data' => array(
          'success' => true,
          'rows' => $items,
          // and so on
        )));
      }
      // ...
    }    
    

    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:

    {# app/Resourses/views/base.json.twig #}
    {{ data | json_encode | raw }}
    

    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.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(5条)

报告相同问题?

悬赏问题

  • ¥15 虚幻5 UE美术毛发渲染
  • ¥15 CVRP 图论 物流运输优化
  • ¥15 Tableau online 嵌入ppt失败
  • ¥100 支付宝网页转账系统不识别账号
  • ¥15 基于单片机的靶位控制系统
  • ¥15 真我手机蓝牙传输进度消息被关闭了,怎么打开?(关键词-消息通知)
  • ¥15 装 pytorch 的时候出了好多问题,遇到这种情况怎么处理?
  • ¥20 IOS游览器某宝手机网页版自动立即购买JavaScript脚本
  • ¥15 手机接入宽带网线,如何释放宽带全部速度
  • ¥30 关于#r语言#的问题:如何对R语言中mfgarch包中构建的garch-midas模型进行样本内长期波动率预测和样本外长期波动率预测