沙滩星空的博客沙滩星空的博客

python的flask框架设置允许CORS跨域

安装模块

pip install flask-cors

全局允许跨域

from flask import Flask
from flask_cors import CORS

if __name__ == '__main__':
    app = Flask(__name__)

    @app.route('/', methods=['GET', 'POST'])
    def index():
        return 'HELLO WORD'

    CORS(app, supports_credentials=True)
    app.run(port=8123)

指定方法允许跨域

@app.route('/', methods=['GET', 'POST'])
@cross_origin()
def index():
    return 'HELLO WORD'
未经允许不得转载:沙滩星空的博客 » python的flask框架设置允许CORS跨域

评论 抢沙发

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址