Skip to content

Instantly share code, notes, and snippets.

@havvg
Created March 19, 2012 16:30
Show Gist options
  • Save havvg/2118274 to your computer and use it in GitHub Desktop.
Save havvg/2118274 to your computer and use it in GitHub Desktop.
Symfony2 Twig JSON with JSONP
{% set jsonp = app.request.query.get('callback') %}
{% if jsonp %}{{ jsonp }}({% endif %}
{% block data %}{% if is_json|default(false) %}{{ data|raw }}{% else %}{{ data|json_encode|raw }}{% endif %}{% endblock %}
{% if jsonp %});{% endif %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment