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

I'm looking form simple tutorial/example about ajax in symfony2, for beginner?

I have these examples:

How can these be put into a Symfony2 app?

share|improve this question
Have you tried to create Entity/Form/Action/View with no ajax? – Ziumin Nov 27 '12 at 12:50
yes, i create with no ajax – Paweł Brzoski Nov 27 '12 at 13:03
Show this code (with Symfony2) without ajax, please – Ziumin Nov 27 '12 at 13:30

closed as not a real question by Jaitsu, cadrell0, C. A. McCann, Dante is not a Geek, Barry Kaye Nov 27 '12 at 16:19

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

It is easy. I will illustrate how to do an AJAX call in Symfony2 through 3 steps. For the following example, assume to use the jQuery library.

  • Define the route for the action that has to handle your AJAX call. E.g.

    AcmeHomeBundle_ajax_update_mydata:
      pattern:  /update/data/from/ajax/call
      defaults: { _controller: AcmeHomeBundle:MyAjax:updateData }
    
  • Define the action in the MyAjax controller from Home bundle. E.g.

    public function updateDataAction(){
      $request = $this->container->get('request');        
      $data1 = $request->query->get('data1');
      $data2 = $request->query->get('data2');
      ...
      //handle data
      ...
      //prepare the response, e.g.
      $response = array("code" => 100, "success" => true);
      //you can return result as JSON
      return new Response(json_encode($response)); 
    }      
    
  • Prepare your AJAX call in your Twig template, e.g.:

    function aButtonPressed(){
        $.post('{{path('AcmeHomeBundle_ajax_update_mydata')}}',               
                    {data1: 'mydata1', data2:'mydata2'}, 
                function(response){
                        if(response.code == 100 && response.success){//dummy check
                          //do something
                        }
    
        }, "json");    
    }
    
    $(document).ready(function() {     
      $('button').on('click', function(){aButtonPressed();});
    });
    

    You can change the example by using other AJAX calls.

share|improve this answer
controller pastebin.com/sPJkhpbY routing pastebin.com/mpb4X7CU ajax.js pastebin.com/tx70YNxz view: pastebin.com/9DvVPYMJ when I open browser i only see: {"code":100,"success":true} I completely beginner – Paweł Brzoski Nov 27 '12 at 14:20
1  
When you open browser does't mean nothing! You don't open browsers, you load webpages! Are you loading the webpage with the Javascript code or are you doing a call to the MyAjaxAction? – JeanValjean Nov 27 '12 at 14:57

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