如何将 Meteor 设置为不缓存特定页面的任何内容?

How do I set Meteor to not cache anything for a specific page?

我正在从事一个使用 Meteor 作为实现的项目。有一组页面正在缓存,无需担心。

但是,我正在尝试将项目中的一页设置为无缓存。我该如何实现?

已编辑:

基于选择的已接受答案;我用这个包装代码实现了预期的结果:

if (Meteor.isServer) {
    Meteor.startup(function () {
        WebApp.rawConnectHandlers.use(function (req, res, next) {
            res.setHeader('cache-control', 'no-cache');
            res.setHeader('expires', '0');
            res.setHeader('Content-Type', 'text/html');
            res.setHeader('charset', 'utf-8');
            next();
        });
    });
}

您可以使用WebApp配置缓存headers:

//Server code
WebApp.rawConnectHandlers.use('/noCachePagePath', function(req, res, next) {
  res.setHeader('cache-control', 'no-cache');
  next();
});