Componette

Componette

residit

residit / nette-jsonp

Nette JSONP Response Extension

download-cloud-line composer require residit/nette-jsonp

nette-jsonp

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));

  }
}

No release at this moment. Try to create first one.

bar-chart-fill

Statistics

download-cloud-fill
55
star-fill
3
bug-fill
0
flashlight-fill
2.8y
price-tag-2-line

Badges

guide-fill

Dependencies

php (>= 5.6)
Componette Componette felix@nette.org