-
-
Save bviews/5036214 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import json | |
from functools import wraps | |
from flask import redirect, request, current_app | |
def support_jsonp(f): | |
"""Wraps JSONified output for JSONP""" | |
@wraps(f) | |
def decorated_function(*args, **kwargs): | |
callback = request.args.get('callback', False) | |
if callback: | |
content = str(callback) + '(' + str(f(*args,**kwargs).data) + ')' | |
return current_app.response_class(content, mimetype='application/javascript') | |
else: | |
return f(*args, **kwargs) | |
return decorated_function | |
# then in your view | |
@default.route('/test', methods=['GET']) | |
@support_jsonp | |
def test(): | |
return jsonify({"foo":"bar"}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment