official documentation显示正在设置的非常简单的设置
app.get('title');
// => undefined
app.set('title', 'My Site');
app.get('title');
// => "My Site"
log('Save configuration values in app %j', config);
app.set('config', config);
log('Setting port as %d', config.app.port);
app.set('port', config.app.port);
log('Setting view engine as %s', 'jade');
app.set('view engine', 'jade');
使用该方法设置。这绝对不是微不足道的。
这里发生了什么,官方文档中没有详细说明?
答案 0 :(得分:1)
Going straight to the source,app.set
似乎没什么特别之处。它只是更新一个内部settings
属性,它是一个包含看似任何东西的对象。对于Balloons.IO:
但是,express确实有一些内部in the express documentation here使用的特殊设置。
使用express的其他库也可能具有内部使用的设置。