Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there any facility to generate a path for a given route and arguments, appending the query string automatically? As a temporary workaround i'm using a self made macro:

{% macro path(route, args, with_query) %}
{% spaceless %}
    {% set with_query = with_query|default(false) and app.request.queryString %}
    {{ path(route, args) ~ (with_query ? '?' ~ app.request.queryString : '' ) }}
{% endspaceless %}
{% endmacro %}

Is there some native function in Symfony2/Twig for doing this?

share|improve this question

1 Answer

up vote 10 down vote accepted

A nice thing with path Twig extension is that unknow parameters passed through the args array are automatically appended at the end of the URL as GET paramaters :

{{ path('route_id', {'routeParam':'foo', 'unknownParam':'bar'})) }}

will produce

/path/to/route/foo?unknownParam=bar

share|improve this answer
Well, answer accepted, even if i need it more dynamic (i.e. unknownParam are more and not fixed). – Gremo Mar 21 '12 at 10:33
this is just a sample, you can put a variable for ''unknownParam'' and ''bar'' ! – PéCé Mar 21 '12 at 10:40
I don't really like Twig, but this is a really nice surprise. +1 :) – mokagio May 30 '12 at 6:58
1  
This 'unknown parameters' functionality is part of the core Symfony2 router - so you can use the same approach in your controllers. From the official documentation: $router->generate('blog', array('page' => 2, 'category' => 'Symfony')); // /blog/2?category=Symfony – Barry Oct 15 '12 at 10:00

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.