ソースを参照

Again, temporary wildcard

Brendan Abolivier 8 年 前
コミット
0c31333503
署名者: Brendan Abolivier <contact@brendanabolivier.com> GPGキーID: 8EF1500759F70623
共有1 個のファイルを変更した1 個の追加0 個の削除を含む
  1. 1
    0
      server.js

+ 1
- 0
server.js ファイルの表示

@@ -35,6 +35,7 @@ app.use(bodyParser.json());
35 35
 // that.
36 36
 app.all('/*', function(req, res, next) {
37 37
     res.header('Access-Control-Allow-Origin', '*');
38
+    res.header('Access-Control-Allow-Headers', 'Content-Type')
38 39
     next();
39 40
 });
40 41