-->

A way to detect Platforms on Trigger.io

2019-08-09 18:22发布

问题:

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.

回答1:

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.



回答2:

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



标签: trigger.io