我们如何在KeystoneJs中获取静态资源的访问日志?
我发现的一件事是,如果我们能够以某种方式覆盖server / bindStaticMiddleware.js中的“ bindStaticMiddleware”方法并添加以下内容:
app.use(function (req, res, next) {
console.log("The file " + req.url + " was requested.");
next();
});
还有其他合适的方法吗?