I tried the below sample, but of course the header appears only on the default page
Yes, that is because you defined it just for the GET /
route and not for the other paths. You should use a middleware instead.
If you wish to set the header for all requests:
app.configure(function(){
app.use(function(req, res, next) {
res.setHeader("Access-Control-Allow-Origin", "*");
return next();
});
app.use(express.static(path.join(application_root, "StaticPages")));
app.use(express.errorHandler({ dumpExceptions: true, showStack: true }));
});
If you just want to do it for the static folders, there is no general method. You can probably change the express.static(which comes from connect.static). Another way to do it is to match urls and set the header if the url is matched.
app.configure(function(){
app.use(function(req, res, next) {
var matchUrl = '/StaticFolder';
if(req.url.substring(0, matchUrl.length) === matchUrl) {
res.setHeader("Access-Control-Allow-Origin", "*");
}
return next();
});
app.use(express.static(path.join(application_root, "StaticPages")));
app.use(express.errorHandler({ dumpExceptions: true, showStack: true }));
});
NOTE: that the middleware need to be before the routes to make effect, in other words you can't put the middleware after the static middleware.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…