大约有 5 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0017 秒)
conch问题 getOS()方法无效 打包以后 Browser.window["conch"].getOS() 提示 not a function ,如果无效了替代方法是什么 2017-12-28 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 qian 赞同来...
来源: Laya_社区 发布时间: 20171228
... 3 人 杨福峰 • 2019-11-04 18:23 let os = (window as any).conchConfig.getOS(); let bridge; if (os === 'Conch-ios') { alert(os); bridge = (window as any).PlatformClass.createClass('JSBridge'); } 官方这样写的发给我的,是没错,但没告诉我,怎么去通过bridge调xcode中的方...
来源: Laya_社区 发布时间: 20191104
... static bridge; static initNative() { AppConfig.os = window['conchConfig'].getOS(); if (AppConfig.os == "Conch-ios") { AppConfig.bridge = window['PlatformClass'].createClass("JSBridge");//创建脚步代理 } else if (AppConfig.os == "Conch-android") { //需要完整的类路径,注意与iOS的不...
来源: Laya_社区 发布时间: 20200917
... if (window.conch) { var os = window.conch.config.getOS(); if (os == "Conch-ios") { origin = Game.ORIGIN.APP_IOS; } else if (os == "Conch-android") { origin = Game.ORIGIN.APP_ANDROID; ...
来源: Laya_社区 发布时间: 20180511
... let bridge = null if(typeof conchConfig != "undefined"){ os = conchConfig.getOS() } if (os == "Conch-ios") { bridge = PlatformClass.createClass("JSBridge")//创建脚步代理 } else if (os == "Conch-android") { //需要完整的类路径,注意与iOS的不同 bridge = PlatformClass.createClass("...
来源: Laya_社区 发布时间: 20211111