赞
踩
1.不要用*号代替origins
2.不要用本地html做跨域测试,要用web服务测。
- app = FastAPI()
-
- origins = [
- "http://localhost",
- "http://localhost:7146",
- "http://localhost:1880",
- "http://localhost:80",
- ]
-
- app.add_middleware(
- CORSMiddleware,
- allow_origins=origins,
- allow_credentials=True,
- allow_methods=["*"],
- allow_headers=["*"],
- )
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。