我正在尝试使用种子文件填充我的 CompoundJS 应用程序的 Mongo 数据库,但是每当我运行compound seed
时,终端都会在我的 console.log 语句之后挂起......数据库已填满,但我必须使用 Ctrl-c 终止命令。
我试过做compound seed harvest
,但这并没有创建正确的种子文件,所以我决定自己做。这是我各自的代码:
db/seeds/development/Host.js(种子文件)
console.log("Seeding Hosts....");
var hosts = [
{
hid: '1',
name: 'MY API',
domain: 'mydomain.com'
}
];
hosts.forEach(function(obj, err){
Host.create(obj, function(err, host){
console.log('host Added: ', host);
});
});
数据库/schema.js
var Host = describe('Host', function () {
property('hid', String);
property('name', String);
property('domain', String);
set('restPath', pathTo.hosts);
});
配置/数据库.js
module.exports = {
development: {
driver: 'mongodb',
url: 'mongodb://localhost/apicache-dev'
},
test: {
driver: 'mongodb',
url: 'mongodb://localhost/apicache-test'
},
production: {
driver: 'mongodb',
url: 'mongodb://localhost/apicache-production'
}
};
就像我说的,当我运行时compound seed
,它会显示两个 console.log 语句,并将我的数据放入数据库中,但它只是挂起......实际上从未返回命令行,所以我不得不用 Ctrl 杀死它-C。我想解决这个问题,因为我必须自动化这个过程,如果它只是挂起的话,自动化有点困难。我究竟做错了什么?任何帮助,将不胜感激!
编辑
因此,当我尝试使用从以下位置生成的 Coffee 脚本版本时compound seed harvest
:
db/seeds/development/Host.coffee
Host.seed ->
hid: '1'
name: 'MY API'
domain: 'mydomain.com'
id: "52571edd2ac9056339000001"
我得到错误集合名称必须是 String。所以我有点好奇,去了产生错误的地方……在第 103 行的node_modules/jugglingdb-mongodb/node_modules/mongodb/lib/mongodb/collection.js中。我在 if 语句之前放了一个console.log(collectionName)
权利,然后看到一个有趣的输出...
{ hid: '1',
name: 'MY API',
domain: 'mydomain.com',
id: NaN }
很明显它不是一个字符串,而是一个哈希对象,而且我的集合的名称(Host)无处可见。对我来说似乎是一个错误。