Blaze全球助手不与MeteorJS Mobile合作

时间:2017-05-16 14:09:12

标签: javascript meteor mobile meteor-blaze

我有两个模板。第一种是基于浏览器的“家庭”,第二种是移动(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';
  }
})

有关上述内容的任何建议都会出现在移动环境中吗?

0 个答案:

没有答案