swan.getEnvInfoSync

基础库 2.0.28 版本开始支持。

解释:获取运行环境信息同步接口

方法参数

同步返回参数说明

参数类型说明
appKeystring智能小程序 App Key
appNamestring智能小程序名称
lastAppURLstring智能小程序最近一次打开的调起协议
sdkVersionstring基础库版本
schemestring调起协议的协议头
envstring智能小程序的版本(基础库 3.90.12 开始支持)。有效值:development,trial,production 。development 代表开发版本;trial 代表体验版本;production 代表线上版本。

示例

在开发者工具中预览效果

扫码体验

swan.getEnvInfoSync - 图1请使用百度APP扫码

图片示例

swan.getEnvInfoSync - 图2

swan.getEnvInfoSync - 图3

swan.getEnvInfoSync - 图4

代码示例

  • 在 swan 文件中
  1. <view class="container">
  2. <view class="card-area">
  3. <view class="list-area border-bottom" s-for="item in infoList">
  4. <view class="result-item">
  5. <text class="result-item-key-6">{{item.chinaName}}</text>
  6. <text class="result-item-value">{{item.value}}</text>
  7. </view>
  8. </view>
  9. <view class="button-group">
  10. <button bind:tap="getEnvInfoSync" type="primary" hover-stop-propagation="true">获取运行环境信息</button>
  11. </view>
  12. </view>
  13. <view class="page-title">
  14. <view class="page-title-line"></view>
  15. <view class="page-title-text">getEnvInfoSync</view>
  16. </view>
  17. </view>
  • 在 js 文件中
  1. let res = swan.getEnvInfoSync();
  2. // 基础库 3.140.1 之前,无法判断接口是否调用失败
  3. // 基础库 3.140.1 及以后,通过 instanceof 来判断接口是否调用失败
  4. if (!(res instanceof Error)) {
  5. console.log('getEnvInfoSync success', res);
  6. }
  7. else {
  8. console.log('getEnvInfoSync fail', res.message);
  9. }

Bug & Tip

  • 基础库 3.140.1 之前,无法判断接口是否调用失败。
  • 基础库 3.140.1 及以后,接口调用失败时会返回一个标准的Error对象,可通过instanceof来判断接口是否调用失败。