gpt4 book ai didi

meteor - Iron-Router Wait-On 不等待 yield

转载 作者:行者123 更新时间:2023-12-02 01:42:14 26 4
gpt4 key购买 nike

我注意到我的路由器定义没有等待订阅完成 yieldTemplates,而是等待主模板。有没有办法让 yield 模板也等待 waitOn

路线:

Router.route('/', {
template : 'main',
layoutTemplate: 'appLayout',
waitOn: function () {
// return one handle, a function, or an array
return [Meteor.subscribe('userInformation'), Meteor.subscribe('projects')];
},
data: function () {
return Meteor.user();
},
action: function () {
if (this.ready()) {
this.render();
} else {
this.render('login');
}
},
yieldTemplates: {
'dash': {to: 'side'}
}
});

我在我的破折号模板中使用数据属性,最初它返回未定义。谢谢

最佳答案

我认为该语法已被弃用,文档使用此语法定义 yield 模板:

this.render('dash', {to: 'side'});

使用此语法从未遇到过 waitOn 问题,试一试吧?

关于meteor - Iron-Router Wait-On 不等待 yield ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27843764/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com