residit/nette-jsonp

Nette JSONP Response Extension

v1.9 2018-02-19 11:02 UTC

This package is not auto-updated.

Last update: 2024-04-18 15:14:52 UTC


README

Nette JSONP Response Extension

Installation

The recommended way to install Nette JSONP Extension is through Composer:

composer require residit/nette-jsonp

Usage

namespace App\Presenters;

use Nette,
  Residit\Application\Responses\JsonpResponse;

class BasePresenter extends Nette\Application\UI\Presenter {

  /**
   * 
   * @param string $callback 
   * @param string $query
   */
  public function actionExampleEndpoint($callback, $query) {
    // ...
    // do the magic with $query
    // ...
 
    $data = array('foo' => 'bar');

    $this->sendResponse(new JsonpResponse($callback, $data));

  }
}