এটি আমার কোড:
@app.route('/hello', methods=["POST"])
def hello():
resp = make_response()
resp.headers['Access-Control-Allow-Origin'] = '*'
return resp
তবে, যখন আমি ব্রাউজার থেকে আমার সার্ভারে একটি অনুরোধ করি তখন আমি এই ত্রুটিটি পাই:
XMLHttpRequest cannot load http://localhost:5000/hello.
No 'Access-Control-Allow-Origin' header is present on the requested resource.
আমি অনুরোধটির "পরে" প্রতিক্রিয়া শিরোনামগুলি সেট করেও এই পদ্ধতির চেষ্টা করেছি:
@app.after_request
def add_header(response):
response.headers['Access-Control-Allow-Origin'] = '*'
return response
কোন পাশা. আমি একই ত্রুটি পেয়েছি। রুট ফাংশনটিতে কেবল প্রতিক্রিয়া শিরোনাম সেট করার কোনও উপায় আছে? এর মতো কিছু আদর্শ হবে:
@app.route('/hello', methods=["POST"])
def hello(response): # is this a thing??
response.headers['Access-Control-Allow-Origin'] = '*'
return response
তবে আমি এটি করতে পারি না। সাহায্য করুন.
সম্পাদনা
যদি আমি পোস্টের অনুরোধের সাথে urlটি কার্ল করি তবে:
curl -iX POST http://localhost:5000/hello
আমি এই প্রতিক্রিয়া পেয়েছি:
HTTP/1.0 500 INTERNAL SERVER ERROR
Content-Type: text/html
Content-Length: 291
Server: Werkzeug/0.9.6 Python/2.7.6
Date: Tue, 16 Sep 2014 03:58:42 GMT
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<title>500 Internal Server Error</title>
<h1>Internal Server Error</h1>
<p>The server encountered an internal error and was unable to complete your request. Either the server is overloaded or there is an error in the application.</p>
কোন ধারনা?