相关文章推荐
激动的书包  ·  Excel ...·  1 年前    · 
爱健身的木瓜  ·  在Asp.Net MVC ...·  2 年前    · 
 1 app.all('*', function (req, res, next) {
 2     res.header('Access-Control-Allow-Origin', '*');
 3     res.header('Access-Control-Allow-Headers', 'Content-Type, Content-Length, Authorization, Accept, X-Requested-With , yourHeaderFeild');
 4     res.header('Access-Control-Allow-Methods', 'PUT, POST, GET, DELETE, OPTIONS');
 5     if (req.method == 'OPTIONS') {
 6         res.send(200);
 7     } else {
 8         next();
10 });