如果我可以在所有路线数据中使用$ myVar,你现在可以吗?
示例:
Router.configure({
layoutTemplate: 'layout',
waitOn: function() {
return [
Meteor.subscribe('posts'),
Meteor.subscribe('skills'),
Meteor.subscribe('tasks'),
Meteor.subscribe('profil')
];
},
data: function() {
var myVar = Profil.findOne({},{
sort: {
createdAt: 1
}, limit: 1
});
}
});
在这些数据上使用myVar:
Router.route('/', {
name: 'home',
data: function(){
var posts = Posts.find();
return {
posts: posts
};
},
onAfterAction: function() {
SEO.set({
title: test.seoSuffix,
meta: {
'description': 'une description'
}
});
}
});
如果需要,我想在所有路线上使用test.xxx。但是这段代码不起作用。
谢谢!