我正在尝试在包中创建一个集合(技术上是在构建插件中):
StaticCollection = new Mongo.Collection(null)
// also the same with Mongo.Collection('static')
StaticCollection.insert({stuff: 'thing'})
但这基本上引发了这个错误:
While loading plugin `compileMarkdownFiles` from package `faichenshing:collection-files`:
packages/compileMarkdownFiles/plugin/compile-md.js:29:1: Mongo is not defined
at Package (packages/compileMarkdownFiles/plugin/compile-md.js:29:1)
at <runJavaScript-268>:121:4
at <runJavaScript-268>:128:3
这也不起作用Meteor.Collection
。
然后我尝试将mongo
集合导入到我的构建插件中,如下所示:
Package.registerBuildPlugin({
name: "compileMarkdownFiles",
use: ['spacebars-compiler', 'mongo'],
// etc.
});
以及在我的Package.onUse
:
api.use('mongo')
它抛出这个错误:
While loading plugin `compileMarkdownFiles` from package `faichenshing:collection-files`:
packages/ddp/stream_server.js:3:1: __meteor_runtime_config__ is not defined
at self (packages/ddp/stream_server.js:3:1)
at <runJavaScript-83>:694:4
at <runJavaScript-83>:4779:3
没有多少搜索可以__meteor_runtime_config__
澄清这个问题。似乎完全无关。
像这样的问题似乎根本没有遇到这个问题。
我对此想得越多,我就越确信它与此代码中存在构建插件有关,但集合定义并没有发生在其中registerSourceHandler
或任何东西中。