如何仅针对移动设备显示 Meteor 模板?

How to display Meteor templates only for mobile?

我希望某些模板仅显示在移动设备上。我怎样才能在 Meteor 中做到这一点?

在 Meteor 中没有明确的方法,所以答案可能适用于任何网站:

  • 您可以使用Detectizr获取客户​​端使用的设备类型。如果它检测到移动设备,您可以设置并传递一个变量,您将在该变量上执行不同的 javascript 代码。

  • 在 Meteor 中你可以设置 Session.set('mobile',true) 例如,这样客户端会在你所有的应用程序中记住它

基于此,在Meteor中可以编写

var testDevice = function(){
    if ( Session.get('mobile') ) {
        //mobile version
        Router.go('mobileTemplate')
    }else{
        //desktop version
        ...
    }
} ;

Template.desktopTemplate.rendered = testDevice ;