Upgrade to Pro — share decks privately, control downloads, hide ads and more …

CakePHP and AJAX

Mark Sch.
August 23, 2014

CakePHP and AJAX

CakePHP and AJAX - Talk at CakeFest Conference in Madrid 2014

Mark Sch.

August 23, 2014
Tweet

More Decks by Mark Sch.

Other Decks in Programming

Transcript

  1. Using CakePHP for 6+ years (starting with 1.2) Core Developer

    since 2+ years Active blogger about CakePHP issues and solutions Germany (Berlin) Passionate PHP and Open Source Developer
  2. What is AJAX When to use it Basics Using GET

    Using POST More examples Tips
  3. Load the whole page once. Then fetch only parts or

    tiny snippets of updates via follow-up requests. Only needs a fraction of the resource/bandwith.
  4. Data exchange without changing position Inline editing Real time validation

    Native look and feel Pre-fetching Data lookups ...
  5. /** * AJAX action to get favorites * * @return

    string */ public function favorites() { $this->autoRender = false; // We don't render a view in this example $this->request->allowMethod(array('ajax')); // No direct access via browser URL $data = array( 'content' => ..., 'error' => '', ); $this->response->body(json_encode($data)); } GET /controller_name/favorites.json
  6. /** * AJAX action to get favorites * * @return

    void */ public function favorites() { $this->request->allowMethod(array('ajax')); // No direct access via browser URL $data = array( 'content' => ..., 'error' => '', ); $this->set(compact('data')); // Pass $data to the view $this->set('_serialize', 'data'); // Let the JsonView class know what variable to use }
  7. <p> <button class="ajax-button" data-url="<?php echo $this->Html->url(array('action' => 'favorites', 'ext' =>

    'json'))?>"> Click me </button> </p> <p> Result: <span id="target"></span> </p>
  8. $(function() { $('.ajax-button').click(function(e) { var targeturl = $(this).data('url'); $.ajax({ type:

    "get", url: targeturl, beforeSend: function(xhr) { xhr.setRequestHeader('Content-type', 'application/x-www-form-urlencoded'); }, success: function(res) { if (res.error != '') { alert(res.error); } else { $('#target').html(res.content); } }, error: function(e) { alert("Fehler bei der Anfrage!"); console.log(e); } }); }); });
  9. $_ENV['HTTP_X_REQUESTED_WITH'] = 'XMLHttpRequest'; $url = Router::url(array( 'controller' => 'controller_name', 'action'

    => 'favorites', 'ext' => 'json', '?' => array('id' => 2) )); $options = array( 'return' => 'vars' ); $result = $this->testAction($url, $options); ... Makes sure $this->request->allowMethod(array('ajax')); passes
  10. ... data: {'one' : $('#one').val(), 'two' : $('#two').val()}, ... $one

    = $this->request->data('one'); $two = $this->request->data('two');
  11. $_ENV['HTTP_X_REQUESTED_WITH'] = 'XMLHttpRequest'; $url = Router::url(array( 'controller' => 'controller_name', 'action'

    => 'favorites', 'ext' => 'json', '?' => array('id' => 2) )); $options = array( 'data' => array(...), 'method' => 'post' 'return' => 'vars' ); $result = $this->testAction($url, $options); ... 'data' array with method type 'post'