A way to detect Platforms on Trigger.io

2019-08-09 18:05发布

Is there a way to detect what platform the app is running on with Javascript in trigger.io? It looks like in the olden days there was an is.android and is.ios method that have since disappeared. We have some different behaviors we want to apply to the different browsers.

标签: trigger.io
2条回答
相关推荐>>
2楼-- · 2019-08-09 18:29

Yes, the forge.is namespace allows you to detect the platform using JavaScript.

To detect if the app is running on an Android device call forge.is.android()

To detect if the app is running on an iOS device call forge.is.ios()

See the Platform Detection docs for more information.

查看更多
【Aperson】
3楼-- · 2019-08-09 18:29

depending on your needs there are a few answers.

The isAndroid or isIOS can work for detecting simply the device but will not give you the version number, somtimes you need to detect versions of IOS or android.

To do that you should use the platform module

https://trigger.io/modules/platform/current/docs/index.html

查看更多
登录 后发表回答