如果存在数组元素,则从mongodb集合中检索项目(meteor js)

时间:2016-07-07 12:49:56

标签: javascript meteor meteor-blaze helpers

仅当数组中的元素等于我在会话中存储的当前月份时,我才想从集合中检索元素。例如,如果我的会话变量等于" juillet"我想只有那些有" juillet"在" moisrec"方法:



Legumes = new Mongo.Collection("legumes");

if (Meteor.isServer) {
    Meteor.startup(function() {
      if (Legumes.find().count() === 0) {
            var legumes = [{
                nom: "poireau",
                moisrec: ["juillet", "août"],
            }, {
                nom: "navet",
                moisrec: ["octobre", "novembre"],
            }, {
                nom: "choux-fleur",
                moisrec: ["juillet", "août"]
            }];
            // Insert sample data into db.
            legumes.forEach(function(item) {
                Legumes.insert(item);
            });
       }
    });
}




我有一个看起来像这样的帮手:



Template.Legumes.helpers({
  legumes : function() {
    return Legumes.find({});
  }
});




我使用火焰进行模板化:



{{#each legumes}}
  <div class="col-sm-3">
      <div class="thumbnail">
        <img src="legumes/{{nom}}.jpg" alt="{{nom}}" width="400" height="300">
         <p><strong>{{nom}}</strong></p>
         <p>Période récolte : {{#each mois in moisrec}}<a>{{mois}} </a>{{/each}}</p>
         <button class="btn" href="/legumes:{{_id}}">Fiche complète</button>
      </div>
   </div>
 {{/each}}
&#13;
&#13;
&#13;

由于

的Yoann

1 个答案:

答案 0 :(得分:0)

Legumes.find({ moisrec: "juillet" });

那应该能满足你的需求。因为它是一个简单的字符串数组,所以你不需要做任何其他花哨的调用。