MeteorJS在点击事件中获取MongoDB ID

时间:2017-12-24 10:35:20

标签: javascript mongodb meteor

我的MeteorJS应用程序中有以下mongo集合:

//Server side, load all the images
Images = new Mongo.Collection('images');
Meteor.startup(() => {
  if(Images.find().count() == 0){
    for(var i = 1; i < 23; i++){
      Images.insert({
        src:"img_"+i+".jpg",
        alt:"image "+i
      });
    }
  }
});

我将它传递给模板,这是有效的。但是,我想要检索映像的MongoDB id(id是MongoDB中的主键/唯一ID)。我使用以下代码执行此操作:

//Client side, get the collection and load it to the template
Images =  new Mongo.Collection('images');

Template.images.helpers({images:Images.find()});

Template.images.events({
  'click .js-del-image': (event) => {
    var imageId = event._id;
    console.log(imageId);
  }
});

这给了我undefined。我究竟做错了什么?我以为this._id应该给我MongoDB ID。

对于记录,这是我的模板,_id属性被填写:

<template name="images">
        <div class="row">
      {{#each images}}
      <div class="col-xs-12 col-md-3" id="{{_id}}">
        <div class="thumbnail">
            <img class="js-image img-responsive thumbnail-img" src="{{src}}"
            alt="{{alt}}" />

            <div class="caption">
                <p>{{alt}}</p>
               <button class="js-del-image btn btn-warning">delete</button>
            </div>
         </div>
        </div> <!-- / col -->
      {{/each}}
    </div> <!-- / row -->
</template>

1 个答案:

答案 0 :(得分:0)

问题在于声明一个函数:

  • (event) => { ... }似乎有_id undefined
  • function(event) {...}似乎有正确的背景。

有关(event) => {...}function(){...}声明的详细信息,请参阅this answer