这两种在模板中使用产量的路线有什么区别?对我来说,两人都在做同样的事情:
Router.route('/', {
name: 'home',
action: function() {
this.render('content', { to: 'content' });
this.render('navigation', { to: 'navigation' });
}
});
Router.route('/', {
name: 'home',
yieldTemplates: {
'navigation': { to: 'navigation' },
'content': { to: 'content' }
}
});
答案 0 :(得分:0)
两者都在做同样的事情,这是你喜欢哪种风格的偏好。
但是,不推荐使用yieldTemplates。它仍然有效,但是如果你想使用这种风格,你应该用yieldRegions替换yieldTemplates。
NSString *textToMatch = @"a";
NSPredicate *namePredicate = [NSPredicate predicateWithFormat:@"LastN CONTAINS[cd] %@", textToMatch];
中看到yieldRegions