1

我刚刚学习 Meteor,我已经定义了一些我在模板中使用的助手。

我注意到我可以通过两种不同的方式做到这一点,但哪种解决方案被认为是最佳实践?为什么?

解决方案 1

UI.registerHelper('firstChar', function (name) {
  return name.charAt(0);
});

解决方案 2

Template.registerHelper('firstChar', function (name) {
  return name.charAt(0);
});
4

1 回答 1

1

您应该坚持解决方案 2,因为这是当前记录的内容:https ://docs.meteor.com/#/full/template_registerhelper

第一个解决方案使用以前的命名空间来定义空格键助手 ( UI),并且已被弃用数月。

于 2015-03-03T16:01:03.087 回答