Meteor:桌面和移动视图
Meteor: Desktop and mobile view
我有一个为桌面视图创建的流星项目。现在我也想为它创建移动视图。我正在使用 bootstrap,所以这不是可伸缩性问题。我希望移动版本以不同方式显示信息。
我可以在不构建两个单独的应用程序的情况下实现这一目标吗?
我正在使用 iron:router,所以我想知道是否可以让某些模板显示设备是否为桌面设备,而其他模板是否在设备为 mobile/tablet 时呈现?
确实 - 您可以使用来自 Atmosphere 的设备检测包:https://atmospherejs.com/mystor/device-detection
A common use case for device detection is to serve a different user experience to the user based on what their device type is. This will often involve different templates to be displayed to the user.
我有一个为桌面视图创建的流星项目。现在我也想为它创建移动视图。我正在使用 bootstrap,所以这不是可伸缩性问题。我希望移动版本以不同方式显示信息。
我可以在不构建两个单独的应用程序的情况下实现这一目标吗?
我正在使用 iron:router,所以我想知道是否可以让某些模板显示设备是否为桌面设备,而其他模板是否在设备为 mobile/tablet 时呈现?
确实 - 您可以使用来自 Atmosphere 的设备检测包:https://atmospherejs.com/mystor/device-detection
A common use case for device detection is to serve a different user experience to the user based on what their device type is. This will often involve different templates to be displayed to the user.