我正在制作一个简单的Meteor应用,可以在用户点击链接时重定向到某个页面。 在“重定向”模板上,我尝试从模板实例中获取属性“url”的值。但是,我第一次点击链接时才能获得正确的价值。当我按F5刷新“重定向”页面时,我不断收到此错误消息:
Tracker afterFlush函数的异常:无法读取null的属性'url' TypeError:无法读取null的属性'url' 在Template.redirect.rendered(http://localhost:3000/client/redirect.js?abbe5acdbab2c487f7aa42f0d68cf612f472683b:2:17) 在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();
}
});
答案 0 :(得分: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");
}
}
});
告诉我是否有效。
答案 1 :(得分:0)
在我的同事的帮助下,我可以解决问题。 我的问题来自错误的Meteor.subscribe语法。在我的代码中,我忘了&#34;返回&#34;在waitOn函数中。这将使Meteor不知道数据何时完全加载。 这是正确的语法:
waitOn: function() {
return Meteor.subscribe('getUrl', this.params._id);
}
&#13;