gpt4 book ai didi

javascript - ionic 2 : best way to check if is running in browser environment

转载 作者:行者123 更新时间:2023-11-28 18:18:04 25 4
gpt4 key购买 nike

我无法在文档中找到了解 Ionic 2 应用程序是否在浏览器中运行(使用 ionicserve 命令)或在设备中运行的最佳方式。/模拟器。

实际上我正在做的是检查窗口对象是否具有“插件”属性,但我不知道是否有最好的方法。

if(!window['plugins']) {
//browser
}

最佳答案

哦,我在文档中找到了 Platform 对象,它有一些方法。 http://ionicframework.com/docs/v2/api/platform/Platform/一是is(key),可以匹配

import { Platform } from 'ionic-angular';

@Component({...})
export MyPage {
constructor(platform: Platform) {
this.platform = platform;
...
if(this.platform.is('core')) {
//it's in the browser
}
}
}

关于javascript - ionic 2 : best way to check if is running in browser environment,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40484294/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com