相关文章推荐
沉着的饼干  ·  jquery ...·  1 年前    · 
大力的键盘  ·  java内存测试工具 java ...·  1 年前    · 
无邪的灌汤包  ·  java excel ...·  1 年前    · 
 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 });