2

我们如何从流星应用程序中的数据库生成模式。我想从每个数据库条目生成多个模式。

使用的数据库是 Mongo DB。

此模式稍后将用于生成表单。

我正在使用 autoform 生成表单。

[1:http://autoform.meteor.com]

4

2 回答 2

1

我编写了一个小脚本,您可以在 mongo 中运行它来对现有(平面)集合进行逆向工程。

/*
**  SimpleSchema definition generator  
**  
**  This will reverse engineer a flat collection
**  only at this point. If you improve this,
**  please share: {"email-left": "timstew", "at":"@", "email-right": "gmail.com"} 
**                              
*/
var schemaName = "publisherSchema"; // Name you want to give to your simple schema
var collectionName = "publishers"; // mongodb collection name (not including 'db.')
var sampleID = "54c00f0d2b21500370a2e4c4"; // _id of a good representative document

// OK, that's all the info we need - Let's get started!
var message = eval("db." + collectionName + ".findOne({_id:\"" + sampleID +"\"})");
var count = 0;
// Hack because I can't figure out how to find out how many fields are in 
var numKeys = 0;
for(var key in message) {numKeys += 1}

var index = 0;
for (var key in message) {
    if (index == 0) {
        print(schemaName + " = new SimpleSchema({");
        }
    print("\t" + key + ": {");
    print("\t\ttype: " + toProper(eval("typeof db." + collectionName + ".findOne({_id:\"" + sampleID + "\"})." + key)) + ",");
    print("\t\tlabel: \"" +  toProper(key) + "\"");

    if (index == numKeys-1) {
        print("\t\t}");
        print("\t})");
    } else {
        print("\t\t},");
    }
    index += 1;
}

function toProper(str)
{
    return str.replace(/\w\S*/g, function(txt){return txt.charAt(0).toUpperCase() + txt.substr(1).toLowerCase();});
}
于 2015-05-08T21:36:11.713 回答
0
  1. MongoDB 是一个文档数据库,不需要模式。您需要做的就是在 Meteor 中声明集合
  2. 如果你想严格文档结构,请查看https://github.com/aldeed/meteor-collection2 ( meteor add aldeed:collection2)

我最近在这里解释了 Meteor 集合和模式。

如果你想从一个集合中读取模式,你可以简单地通过collectionName.simpleSchema(). 出于您的目的,您可以采用此架构并将其转换为您想要的结构(或排除某些配置的字段)。

于 2015-04-24T10:23:36.097 回答