在meteorjs中,我应该在哪里声明一个函数,所以调用它可以在任何地方工作?

时间:2015-07-28 15:26:36

标签: meteor

如果此函数需要在其之前声明其他库? (例如bootstrap,less,paperjs)

换句话说,我该如何控制导入订单?

2 个答案:

答案 0 :(得分:2)

首先加载包,因此您只需在/lib/*内定义它们。

Check the docs for more info

答案 1 :(得分:0)

If the function needs access to the DOM, put it in client/lib

else, put it in /lib

DOCS