Limbo 0 关注者 关注 1个月前 用 Agno Playground 要注意如何要连接本地接口,跨域处理就不能用星号,通配符 allow_origins=["*"] 同时设置了 allow_credentials=True,这会导致CORS错误 可以改成 allow_origins=["", "http://localhost:3000", "http://localhost:8080"] 指定具体的域名以支持credential 前往原网页查看