With Iron Router, Find() and FindOne()



我用Meteor加载了Iron:Router,现在我在加载所有集合和一个特定条目时遇到了困难。

我想做的是:在导航栏中,我想列出用户以前的所有条目。我做得很好。它将每一个都列在一个下拉列表中,提供一个适当的链接,并且只加载用户以前输入的内容。在正文中,假设为每个条目加载特定信息。

什么不起作用:它要么没有给我一个findOne(),其中的params_id等于路由中的id,或者它没有加载任何内容。位置正确。它只是没有像应该的那样加载信息。

更新:我移动了一些东西,并打印出了"name"字段,但仍然无法验证所有者。控制台打印出:"模板帮助程序中的异常:ReferenceError:currentCharacter未定义"替换为当前代码。

我做错了什么?以下是代码:

路线:

  this.route('character/:_id', {
    template: 'character',
    subscriptions: function() {
      return Meteor.subscribe("characterlist");
      return Meteor.subscribe("characterlist", this.params._id);
    },
    data: function () {
      var routeid = this.params._id;
      return {
        currentCharacter: CharList.findOne({_id: routeid}),
        characterlist: CharList.find({'owner':Meteor.userId()})
      };
    }
  });

模板帮助程序类:

Template.character.helpers({
    characterlist: function () {
      return CharList.find({}, {sort: {createdAt: -1}});
    },
    currentCharacter: function () {
      return CharList.findOne({'_id':Router.current().params._id});
    },
    isOwner: function () {
      return currentCharacter.owner === Meteor.userId();
    }
  });

HTML:

<template name='character'>
  <div class="container-body">
    {{#if currentUser}}
    <div class="well">
      {{currentCharacter.name}}
      {{#with currentCharacter}}
      {{#if isOwner}}
      <p>Character: {{name}}</p>
      {{else}}
      <p>You are not approved to make spends for this character.</p>
      {{/if}}
      {{/with}}
    </div>
    {{else}}
    <h4>Please log in.</h4>
    {{/if}}
  </div>
</template>

让我在网上大声叹息。像往常一样,当我寻求帮助时,我发现自己做错了什么。

它需要得到"this"对象并拉出"owner"类型。一旦它有了"this.owner",它就可以验证用户当然是正确的所有者。我试着聪明一点,四个小时都没有意识到这是在问错误的信息!以下代码:

isOwner: function () {
  return this.owner === Meteor.userId();
}

相关内容

  • 没有找到相关文章

最新更新