gpt4 book ai didi

Symfony2 : Automatically map query string in Controller parameter

转载 作者:行者123 更新时间:2023-12-02 21:30:03 25 4
gpt4 key购买 nike

在Symfony2中,路由参数可以自动映射到 Controller 参数,例如:http://a.com/test/foo将返回“foo”

    /**
* @Route("/test/{name}")
*/
public function action(Request $request, $name) {
return new Response(print_r($name, true));
}

参见http://symfony.com/doc/current/book/routing.html#route-parameters-and-controller-arguments

但我想使用查询字符串来代替,例如:http://a.com/ 测试?name=foo

如何做到这一点?对我来说只有 3 个解决方案:

还有其他解决方案吗?

最佳答案

我为那些想要使用转换器的人提供代码:

use Sensio\Bundle\FrameworkExtraBundle\Configuration\ParamConverter;
use Sensio\Bundle\FrameworkExtraBundle\Request\ParamConverter\ParamConverterInterface;
use Symfony\Component\HttpFoundation\Request;

/**
* Put specific attribute parameter to query parameters
*/
class QueryStringConverter implements ParamConverterInterface{
public function supports(ParamConverter $configuration) {
return 'querystring' == $configuration->getConverter();
}

public function apply(Request $request, ParamConverter $configuration) {
$param = $configuration->getName();
if (!$request->query->has($param)) {
return false;
}
$value = $request->query->get($param);
$request->attributes->set($param, $value);
}
}

服务.yml:

services:
querystring_paramconverter:
class: AppBundle\Extension\QueryStringConverter
tags:
- { name: request.param_converter, converter: querystring }

在你的 Controller 中:

/**
* @Route("/test")
* @ParamConverter("name", converter="querystring")
*/
public function action(Request $request, $name) {
return new Response(print_r($name, true));
}

关于Symfony2 : Automatically map query string in Controller parameter,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33982299/

25 4 0