Change symfony form url using parameters

I wanted to change the URL of the submitted symfony form using parameters. I tried many solutions from this platform and none of the solutions helped!

The current URL is as follows: http://localhost:8000/search?app_bundle_search_form%5Bsearch%5D=qui&app_bundle_search_form%5Bbrand%5D=&app_bundle_search_form%5Bprice%5D=500%2C100000&app_bundle_search_form%5B_token%5D=BtA5bZb9HErUXzXFzGFbpEhlD6nD33zr7tKiPLxjpy4

I want it to look like http: // localhost: 8000 / search? Search = qui? Brand =? Minprice = 500? Maxprice = 100000

Here is my controller:

 public function searchAction($searchTerm=null,Request $request)
{
    if ($request->getMethod() == 'GET') {

        $searchTerm = $request->query->get('app_bundle_search_form')['search'];
        $searchBrand = $request->query->get('app_bundle_search_form')['brand'];
        $price = $request->query->get('app_bundle_search_form')['price'];
        $price = explode(",", $price);

        $minPrice = $price[0];
        $maxPrice = $price[1];

        $em = $this->getDoctrine()->getManager();
        $search = $em->getRepository('AppBundle:Classified')->searchClassifieds($searchTerm, $searchBrand, $minPrice, $maxPrice);


    }


    return $this->render('search-result.html.twig', [
        'searchTerm' => $searchTerm,
        'results' => $search
    ]);


}

the form:

 public function buildForm(FormBuilderInterface $builder, array $options)
{
    $builder
        ->setMethod('GET')
        ->add('search', TextType::class,array(
            'required'=> false
        ))
        ->add('brand',EntityType::class,[
            'class'=>Brand::class,
            'placeholder'=>'Choose a brand',
            'required'=>false,
            'query_builder'=>function(BrandRepository $repo){
                return $repo->DistinctBrandValue();
            }
        ])
        ->add('price', TextType::class, array(
            'required' => true,
            'label' => 'Price',
            'attr' => [
                'data-slider-min' => '500',
                'data-slider-max' => '100000',
                'data-slider-step' => '2',
                'data-slider-value' => "[500,100000]",
            ]))
      ;

}

Routing

search:
path: /search
defaults:
    _controller: AppBundle:Search:search
requirements:
        methods: GET

Twig:

 {{ form_start(search, { action: path('search')}) }}
    {{ form_widget(search) }}
<button class="btn btn-outline-success my-2 my-sm-0" type="submit">{% trans %}Search{% endtrans %}</button>
<a href="{{ path('search') }}" class="btn btn-primary">{% trans %}Cancel{% endtrans %}</a>
{{ form_end(search) }}

Thanks in advance!

EDIT: So I did this, I had to make the form name null.

public function getBlockPrefix()
{
    return '';
}

And set the csrf protection to false.

public function configureOptions(OptionsResolver $resolver)
{
    $resolver->setDefaults([
        'csrf_protection' => false,
    ]);

}

And also changed the form name to null in the controller. URL now looks a little better!

+4
source share
1

getName formType , :

:

public function getName()
{
    return '';
}

+2

Source: https://habr.com/ru/post/1676162/


All Articles