我正在使用 nconf 来处理我的应用程序中的配置。我设置它的方式如下:

nconf.env({
    separator: '__',
    whitelist: ['foo', 'bar']
})
.file('config.json')

如果它们是通过环境变量获得的,我似乎无法修改它们。例如,
console.log(nconf.get()); // {"foo":123,"bar":356}
nconf.set('foo', 789);
console.log(nconf.get()); // {"foo":123,"bar":356}

我检查了 storesnconf 属性,似乎表明 env 变量是只读的?
console.log(nconf.stores);
/**
 * { env:
 *   { type: 'env',
 *     store: { foo: [Object] },
 *     mtimes: { 'foo': 1372348332705 },
 *     readOnly: true, <-- here
 *     loadFrom: null,
 *     whitelist:
 *         ...

有没有办法允许在运行时修改通过 env 变量设置的变量?如果我设置使用 config.json 文件设置的值,我可以毫无问题地修改值。

非常感谢任何帮助:-)

最佳答案

这是我解决这个问题的方法

nconf.stores.env.readOnly = false;
nconf.set('foo', 789);
nconf.stores.env.readOnly = true;
console.log(nconf.get()); // {"foo":789,"bar":356}

希望有帮助。

关于node.js - 使用 nconf 和 env 的只读配置值,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/17347810/

10-10 15:06