慕桂英4014372
exprss里是这么配置的,关键在于允许options请求以及options请求自动返回200看你说的返回两次可能是因为post请求没达到简单请求的要求,会发送options// cors跨域配置app.all('*', function (req, res, next) { res.header('Access-Control-Allow-Origin', '*'); res.header('Access-Control-Allow-Headers', 'Content-Type, Content-Length, Authorization, Accept, X-Requested-With, Current-Page'); res.header('Access-Control-Allow-Methods', 'PUT, POST, GET, DELETE, OPTIONS'); if (req.method == 'OPTIONS') { res.sendStatus(200); } else { next(); }});