使用占位符(lorem ipsum)数据在mongodb中完成收集的最佳方法是什么?例如我有帖子集合,并希望在项目开始时提供一些数据({内容:xxx,创建者:约翰,...)),以防万一我想让用户可以测试我的应用程序而无需手动添加数据。如何做到最好?
My sollution: creating another file with:
mongoose.connect(config.database, (err, db) => {
//postArray implementation
//insertMany logic
}
这是个好方法吗?