다음 ajax
게시물 요청에 대해 Flask
( 플라스크에서 ajax에서 게시 된 데이터를 어떻게 사용할 수 있습니까? ) :
$.ajax({
url: "http://127.0.0.1:5000/foo",
type: "POST",
contentType: "application/json",
data: JSON.stringify({'inputVar': 1}),
success: function( data ) {
alert( "success" + data );
}
});
내가 얻을 Cross Origin Resource Sharing (CORS)
오류 :
No 'Access-Control-Allow-Origin' header is present on the requested resource.
Origin 'null' is therefore not allowed access.
The response had HTTP status code 500.
다음 두 가지 방법으로 해결하려고했지만 작동하지 않는 것 같습니다.
- Flask-CORS 사용
이것은 교차 출처 AJAX를 가능하게 Flask
하는 처리 CORS
를 위한 확장입니다 .
- http://flask-cors.readthedocs.org/en/latest/
- 플라스크와 헤 로쿠에서 CORS를 활성화하는 방법
- jwt 인증 래퍼가 적용될 때 Flask-cors 래퍼가 작동하지 않습니다.
- 자바 스크립트-요청 된 리소스에 'Access-Control-Allow-Origin'헤더가 없습니다.
이 솔루션을 사용하는 내 pythonServer.py :
from flask import Flask
from flask.ext.cors import CORS, cross_origin
app = Flask(__name__)
cors = CORS(app, resources={r"/foo": {"origins": "*"}})
app.config['CORS_HEADERS'] = 'Content-Type'
@app.route('/foo', methods=['POST','OPTIONS'])
@cross_origin(origin='*',headers=['Content-Type','Authorization'])
def foo():
return request.json['inputVar']
if __name__ == '__main__':
app.run()
- 특정 플라스크 데코레이터 사용
이것은 장식하는 기능을 허용해야하는 장식자를 정의 하는 공식 Flask 코드 조각 CORS
입니다.
- http://flask.pocoo.org/snippets/56/
- Python Flask 교차 사이트 HTTP POST-허용 된 특정 출처에서 작동하지 않습니다.
- http://chopapp.com/#351l7gc3
이 솔루션을 사용하는 내 pythonServer.py :
from flask import Flask, make_response, request, current_app
from datetime import timedelta
from functools import update_wrapper
app = Flask(__name__)
def crossdomain(origin=None, methods=None, headers=None,
max_age=21600, attach_to_all=True,
automatic_options=True):
if methods is not None:
methods = ', '.join(sorted(x.upper() for x in methods))
if headers is not None and not isinstance(headers, basestring):
headers = ', '.join(x.upper() for x in headers)
if not isinstance(origin, basestring):
origin = ', '.join(origin)
if isinstance(max_age, timedelta):
max_age = max_age.total_seconds()
def get_methods():
if methods is not None:
return methods
options_resp = current_app.make_default_options_response()
return options_resp.headers['allow']
def decorator(f):
def wrapped_function(*args, **kwargs):
if automatic_options and request.method == 'OPTIONS':
resp = current_app.make_default_options_response()
else:
resp = make_response(f(*args, **kwargs))
if not attach_to_all and request.method != 'OPTIONS':
return resp
h = resp.headers
h['Access-Control-Allow-Origin'] = origin
h['Access-Control-Allow-Methods'] = get_methods()
h['Access-Control-Max-Age'] = str(max_age)
if headers is not None:
h['Access-Control-Allow-Headers'] = headers
return resp
f.provide_automatic_options = False
return update_wrapper(wrapped_function, f)
return decorator
@app.route('/foo', methods=['GET','POST','OPTIONS'])
@crossdomain(origin="*")
def foo():
return request.json['inputVar']
if __name__ == '__main__':
app.run()
그 이유를 알려주시겠습니까?