瀏覽代碼

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