Allow multiple CORS domain in express js

前端 未结 4 816
予麋鹿
予麋鹿 2020-12-15 22:00

How do I allow multiple domains for CORS in express in a simplified way.

I have

 cors: {
        origin: \"www.one.com\";
    }

    app.all(\'*\', f         


        
4条回答
  •  渐次进展
    2020-12-15 22:39

    Lets understand how this header works. "Access-Control-Allow-Origin" accepts only a string. So to make it dynamic you need to get the requesting host from the http header. Check it against your array of authorised domains. If it's present then add that as a value to the header, else adding a default value will prohibit unauthorised domains from accessing the API.

    There is no native implementation for this. You can do it yourself using the code below.

    cors: {
                origin: ["www.one.com","www.two.com","www.three.com"],
                default: "www.one.com"
            }
    
    app.all('*', function(req, res, next) {
                    var origin = cors.origin.indexOf(req.header('origin').toLowerCase()) > -1 ? req.headers.origin : cors.default;
                    res.header("Access-Control-Allow-Origin", origin);
                    res.header("Access-Control-Allow-Headers", "Origin, X-Requested-With, Content-Type, Accept");
                    next();
                });
    

提交回复
热议问题