Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有一种好方法可以存储在任何其他 javascript 之前加载的流星客户端设置?
我会将诸如 api id 之类的东西放入其中。
如果您没有进行任何类型的初始化,即只存储诸如 api 键之类的值,您可以:
1)settings.json在项目目录中有一个包含您的设置的文件,例如
settings.json
{ "public" : { "api_key":"value1" } }
然后使用此设置文件启动流星
meteor --settings settings.json
通过以下方式在您的客户端上访问此值:
Meteor.settings.public.api_key => "value1"