如何解決Flask 應用中的CORS 問題
在發出跨域(CORS)請求時,經常會遇到由於缺失而導致的錯誤“Access-Control-Allow-Origin”標頭。在這種情況下,請求將被拒絕,因為伺服器未明確允許來自客戶端來源的請求。
要解決此問題,您可以使用「flask-cors」套件在 Flask 應用程式上啟用 CORS。操作方法如下:
安裝flask-cors
<code class="bash">pip install -U flask-cors</code>
<code class="python">from flask_cors import CORS, cross_origin</code>
<code class="python">app = Flask(__name__) cors = CORS(app) app.config['CORS_HEADERS'] = 'Content-Type'</code>
>
<code class="python">@app.route("/") @cross_origin() def helloWorld(): return "Hello, cross-origin-world!"</code>
<code class="javascript">// Only change the crossDomain option to false $.ajax({ type: 'POST', url: 'http://...', data: "name=3&email=3&phone=3&description=3", crossDomain: false, success: function(msg) { alert(msg); } });</code>
<code class="python">from flask import Flask, request from flask.ext.mandrill import Mandrill from flask_cors import CORS app = Flask(__name__) cors = CORS(app)</code>
請務必將JavaScript 程式碼中的crossDomain 選項變更為false,以防止跨域要求。另外,請確保您的伺服器設定允許來自指定來源 (http://...) 的請求。
以上是如何解決 Flask 應用程式中的 CORS 問題:為什麼需要「Access-Control-Allow-Origin」標頭?的詳細內容。更多資訊請關注PHP中文網其他相關文章!