getEnvInfoSync
解释:获取运行环境信息同步接口
基础库 2.0.28 版本开始支持。
同步返回参数说明:
参数 | 类型 | 说明 |
---|---|---|
appKey | string | 智能小程序 App Key |
appName | string | 智能小程序名称 |
lastAppURL | string | 智能小程序最近一次打开的调起协议 |
sdkVersion | string | 基础库版本 |
scheme | string | 调起协议的协议头 |
示例:
- try {
const envInfo = swan.getEnvInfoSync();
console.log(envInfo.appKey);
console.log(envInfo.appName);
console.log(envInfo.lastAppURL);
console.log(envInfo.sdkVersion);
console.log(envInfo.scheme);
} catch (e) {
// Do something when catch error
}