12

我正在尝试使用 Symfony2 和 FOSRestBundle 来提出一个 REST 框架,但我失败了。

我做了以下事情:

在我的 deps 文件中:

[FOSRest]
    git=git://github.com/FriendsOfSymfony/FOSRest.git
    target=fos/FOS/Rest

[FOSRestBundle]
    git=git://github.com/FriendsOfSymfony/FOSRestBundle.git
    target=bundles/FOS/RestBundle

[JMSSerializerBundle]
    git=git://github.com/schmittjoh/JMSSerializerBundle.git
    target=bundles/JMS/SerializerBundle

在我的应用程序/config.yml

fos_rest:
    view:
        formats:
            rss: true
            xml: false
        templating_formats:
            html: true
        force_redirects:
            html: true
        failed_validation: HTTP_BAD_REQUEST
        default_engine: twig


sensio_framework_extra:
    view:
        annotations: false

在我的控制器中:

namespace Rest\WebServiceBundle\Controller;

use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use FOS\RestBundle\View\View;  


class DefaultController extends Controller
{

    public function indexAction($name)
    {


  $view = View::create()
          ->setStatusCode(200)
          ->setData($name);
        return $this->get('fos_rest.view_handler')->handle($view);


    }
}

当我转到 URL 时:http ://local.symfony.com/web/app_dev.php/hello/test

我得到:

Unable to find template "".
500 Internal Server Error - InvalidArgumentException
2 linked Exceptions: Twig_Error_Loader » Twig_Error_Loader

文档让我感到困惑,我无法继续。我想要的只是能够将一组数据传递给控制器​​并取回 JSON 格式。有人可以帮忙吗?

4

1 回答 1

18

formats部分中,config.yml您必须启用 json 格式并禁用其他格式并_format在路由中将默认值设置为 json。例如

# app/config/config.yml
fos_rest:
    view:
        formats:
            json: true
            rss: false # removing them will also work
            xml: false
#.......

#bundle/routing.yml
route_name:
  pattern: /route
  defaults: { _controller: Bundle:Controller:Method, _format:json }

或者,在控制器中你可以做

$view->setFormat('json');

还要查看文档中给出的示例链接。

于 2012-05-13T19:15:43.050 回答