返回Meteor MongoDB集合中

时间:2015-05-06 17:35:27

标签: mongodb meteor meteor-autoform chained-select

拥有以下MongoDB集合:

{
    "_id": "u3Yv2bm4cpsssLSHv",
    "allowed": 1,
    "country_name": "Canada",
    "states": [
        {
            "state_name": "Alberta"
        },
        {
            "state_name": "British Columbia"
        },
        {
            "state_name": "Manitoba"
        },
        {
            "state_name": "New Brunswick"
        },
        {
            "state_name": "Newfoundland and Labrador"
        },
        {
            "state_name": "Nova Scotia"
        },
        {
            "state_name": "Ontario"
        },
        {
            "state_name": "Prince Edward Island"
        },
        {
            "state_name": "Quebec"
        },
        {
            "state_name": "Saskatchewan"
        },
        {
            "state_name": "Northwest Territories"
        },
        {
            "state_name": "Nunavut"
        },
        {
            "state_name": "Yukon"
        }
    ]
}

如何返回此集合中“状态”的值,以便填充下拉列表?我正在尝试执行以下操作(不会在“states”子文档中返回任何内容“):

venue_province: {
    type: String,
    label: "Province/State",
    optional: true,
    max: 200,
    autoform: {
        type: 'chained',
        // Gets a list of province/state names from the locations collection
        options: function() {
            return _.map(bt_col_locations.find().fetch(), function(item) {
                return {value: item.states.state_name, label: item.states.state_name, parent: item.country_name}
            })
        }
    }

请注意,我使用的是Aldeed:Autoforms和jQuery Chained;基本上我有一个父下拉列表供用户选择国家,子下拉列表与适当的州/省级联。

1 个答案:

答案 0 :(得分:0)

您正在寻找的可能是Mongo Aggregation框架。 (http://docs.mongodb.org/manual/core/aggregation-introduction/)我没有在这里测试你的具体用法,但是你应该能够使用$ unwind来使状态数组进入一个更可行的状态然后只是查询它。从那里你还可以做一些其他有用的操作,比如排序,让你看起来很好看。