0

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

来自 Tracker afterFlush 函数的异常:无法读取 null 的属性“url”类型错误:无法在 Template.redirect.rendered 处读取属性“url”的 null(http://localhost:3000/client/redirect.js?abbe5acdbab2c487f7aa42f0d68cf612f472683b:2:17 ) 为空。

这是 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”属性的值吗?

这是我的代码(有关更多详细信息,您可以访问我的仓库):

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> 

主页.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);
  }
});

重定向.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;
  }
});

路由器.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});
  }
});

发布.js

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

4

2 回答 2

1

添加这个

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");
    }
  }
});

告诉我是否有效。

于 2015-02-02T05:38:09.723 回答
0

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

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

于 2015-02-03T04:31:39.303 回答