如果所有者流星 js,则在模板中显示元素

show element in template if owner meteor js

我正在编写一个消息传递应用程序,它具有针对用户提交的给定消息的删除/编辑功能。我想做的是写这样的东西:

{{#if currentUser._id === this._id}}
     <!-- Show -->
{{/if}}

但这可能是错误的我有一个为消息记录编写的模板:

<template name="message">
  <div class="row message-row">
    <div class="col-md-12">
      <div class="message-container">
        <div class="message-avatar">
          <img src="{{userAvatar}}">
        </div>
        <p>{{message}}</p>
        <div class="message-time">{{prettifyDate time}}</div>
        <!-- this is the div to hide / show based on the conditional -->
        <div class="message-controls">
          <button class="btn btn-link btn-xs" type="button" id="deleteMessage"><i class="fa fa-trash-o"></i></button>
          <button class="btn btn-link btn-xs" type="button" id="editMessage"><i class="fa fa-edit"></i></button>
        </div>
        <!-- end -->
      </div>
    </div>
  </div>
</template>

我在 client.js

中使用了以下内容
  Template.messages.messages = function() {
    return Messages.find({}, { sort: {time: -1} });
  }

但此时我卡住了

假设您的消息文档有一个 userId 字段,您可以简单地这样做:

Template.message.helpers({
  isOwner: function() {
    return this.userId === Meteor.userId();
  }
});

和:

{{#if isOwner}}
  <!-- controls -->
{{/if}}

您还可以为此制作一个更灵活、可重用的全局助手:

Template.registerHelper('isCurrentUser', function(userId) {
  return userId === Meteor.userId();
});
<!-- in this example, the document might have an `ownerId` field rather than `userId` -->
{{#if isCurrentUser ownerId}}{{/if}}

当然,您还需要使用 allow/deny API 或自定义方法验证服务器上的更新。