javascript CORS政策:印前检查响应中的Access-Control-Allow-Methods不允许使用方法DELETE [已关闭]

s5a0g9ez  于 2022-12-25  发布在  Java
关注(0)|答案(1)|浏览(109)

**已关闭。**此问题需要debugging details。当前不接受答案。

编辑问题以包含desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将有助于其他人回答问题。
昨天关门了。
Improve this question
POST,GET都可以,但是它的DELETE方法总是被CORS阻塞,有什么解决办法吗?

icnyk63a

icnyk63a1#

试试这个代码

app.use(cors({origin : "http://localhost:3001",methods : ["GET","POST","PUT","DELETE"],optionsSuccessStatus: 200}));

相关问题