Tracker afterFlush error : Cannot read value of a property from data context in template rendered callback

Tracker afterFlush error : Cannot read value of a property from data context in template rendered callback

我正在制作一个简单的 Meteor 应用程序,它可以在用户单击 link 时重定向到一个页面。 在 'redirect' 模板上,我尝试从模板实例中获取 属性 'url' 的值。但我只在第一次单击 link 时获得正确的值。当我按 F5 刷新 'redirect' 页面时,我不断收到此错误消息:

Exception from Tracker afterFlush function: Cannot read property 'url' of null TypeError: Cannot read property 'url' of null at Template.redirect.rendered (http://localhost:3000/client/redirect.js?abbe5acdbab2c487f7aa42f0d68cf612f472683b:2:17) at null.

这是 debug.js 指向的地方:(第 2 行)

 if (allArgumentsOfTypeString)
      console.log.apply(console, [Array.prototype.join.call(arguments, " ")]);
    else
      console.log.apply(console, arguments);

  } else if (typeof Function.prototype.bind === "function") {
    // IE9
    var log = Function.prototype.bind.call(console.log, console);
    log.apply(console, arguments);
  } else {
    // IE8
    Function.prototype.call.call(console.log, console, Array.prototype.slice.call(arguments));
  }

你能告诉我为什么我无法从模板渲染回调中的模板数据上下文中读取 'url' 属性 的值吗?

这是我的代码(更多详情可以访问我的repo):

HTML:

<template name="layout">
  {{>yield}}
</template>

<template name="home">
  <div id="input">
    <input type="text" id="url">
    <input type="text" id="description">
    <button id="add">Add</button>
  </div>
  <div id="output">
    {{#each urls}}
      {{>urlItem}}
    {{/each}}
  </div>
</template>

<template name="redirect">
  <h3>Redirecting to new...{{url}}</h3>
</template>

<template name="urlItem">
  <p><a href="{{pathFor 'redirect'}}">
    <strong>{{url}}: </strong>
  </a>{{des}}</p>
</template> 

home.js

Template.home.helpers({
  urls: function(){
    return UrlCollection.find();
  }
});
Template.home.events({
  'click #add': function() {
    var urlItem = {
      url: $('#url').val(),
      des: $('#description').val()
    };

    Meteor.call('urlInsert', urlItem);
  }
});

redirect.js

Template.redirect.rendered = function() {
  if ( this.data.url ) {
    console.log('New location: '+ this.data.url);
  } else {
    console.log('No where');
  }
}
Template.redirect.helpers({
  url: function() {
    return this.url;
  }
});

router.js

Router.configure({
  layoutTemplate: 'layout'
})
Router.route('/', {
  name: 'home',
  waitOn: function() {
    Meteor.subscribe('getUrl');
  }
});
Router.route('/redirect/:_id', {
  name: 'redirect',
  waitOn: function() {
    Meteor.subscribe('getUrl', this.params._id);
  },
  data: function() {
    return UrlCollection.findOne({_id: this.params._id});
  }
});

publication.js

Meteor.publish('getUrl', function(_id) {
  if ( _id ) {
    return UrlCollection.find({_id: _id});
  } else {
    return UrlCollection.find();
  }
});

添加这个

Router.route('/redirect/:_id', {
  name: 'redirect',
  waitOn: function() {
    Meteor.subscribe('getUrl', this.params._id);
  },
  data: function() {
    if(this.ready()){
     return UrlCollection.findOne({_id: this.params._id});
     }else{
     console.log("Not yet");
    }
  }
});

告诉我是否有效。

在同事的帮助下,我解决了这个问题。 我的问题来自错误的 Meteor.subscribe 语法。在我的代码中,我忘记了 waitOn 函数中的 "return" 。这将使 Meteor 不知道数据何时完全加载。 这是正确的语法:

waitOn: function() {
  return Meteor.subscribe('getUrl', this.params._id);
}