我在编写包时遇到了一些问题,也许有人可以提供帮助。我正在尝试包含新的 npm 模块并将它们添加到 Meteor 类中。
因此,例如在我的 package.js 中,我声明:
mongoose = require('mongoose');
这很好用,我可以控制台记录它并显示对象。但是在里面Package.on_use(
我不能使用 Meteor 类:Meteor is not defined
- 在使用 Meteor 类之前,我什至尝试过使用启动包而不看。
和
在包含使用的 js 文件中:api.add_file
我无法获取 mongoose 类: mongoose is not defined