为什么我的流星设置没有传递给应用程序?
Why are my meteor settings not being passed to the application?
set METEOR_SETTINGS={"public": {"stage": "development"}}
meteor
然后这一行:
console.log(Meteor.settings.public.stage);
导致此错误:
W20150612-20:45:38.338(-7)? (STDERR) TypeError: Cannot read property 'stage' of undefined
我做错了什么?
据我了解,环境变量仅用于部署模式(运行 一个包)。
在开发中,即当运行meteor
时,您需要使用--settings
命令行参数来指定包含设置的文件。
set METEOR_SETTINGS={"public": {"stage": "development"}}
meteor
然后这一行:
console.log(Meteor.settings.public.stage);
导致此错误:
W20150612-20:45:38.338(-7)? (STDERR) TypeError: Cannot read property 'stage' of undefined
我做错了什么?
据我了解,环境变量仅用于部署模式(运行 一个包)。
在开发中,即当运行meteor
时,您需要使用--settings
命令行参数来指定包含设置的文件。