私は、nodeJs v6 バックエンドと socket.io-redis pub sub メソッドを備えた反応フロント エンドを使用しています。この場合、接続はブラウザによって拒否されます。
私はこのエラーを持っています:私は
Failed to load https://api.mydomain.com/socket.io-client/?EIO=3&transport=polling&t=M8vzD5C: The 'Access-Control-Allow-Origin' header contains multiple values 'http://localhost:3000, *', but only one is allowed. Origin 'http://localhost:3000' is therefore not allowed access.
フロントエンドの反応、バックエンドのnodeJsで実行しており、pub sub socket-redis接続を使用してここに私の応答ヘッダーがあります:
Access-Control-Allow-Credentials: true
Access-Control-Allow-Credentials: true
Access-Control-Allow-Headers: Origin, X-Requested-With, Content-Type, Accept, If-Modified-Since, Authorization
Access-Control-Allow-Methods: POST, GET, PUT, DELETE, OPTIONS
Access-Control-Allow-Origin: http://localhost:3000
Access-Control-Allow-Origin: *
Connection: keep-alive
Content-Length: 104
Content-Type: text/plain; charset=UTF-8
Date: Sun, 18 Mar 2018 16:19:12 GMT
Server: nginx/1.10.3 (Ubuntu)
私が間違って何をしたか知っているかもしれません明らかに接続は確立できますが、すぐに切断され、ループで再接続を試み続けます (理由はわかっています) が、応答ヘッダーに複数の値があるのはなぜですか?
質問する
602 次