我有两个模板。第一种是基于浏览器的“家庭”,第二种是移动(iOS和Android),称为“mobileHome”。
我已尝试过注册全局帮助程序的每个已知版本,当它们出现在浏览器模板上时,它们不会出现在移动版本上。
main.js
Template.registerHelper('groupId', function () {
return 'hi, madeup group id here';
});
Handlebars.registerHelper('isMainApp', function () {
console.log('hello')
return 'hello this is mobileMainApp';
});
UI.registerHelper('what', function () {
return 'what ui call';
});
UI.body.helpers({
fund: function(){
return 'hey template .body';
}
})
有关上述内容的任何建议都会出现在移动环境中吗?