# 应用配置 configuration

# 导入模块

import configuration from '@system.configuration';

# configuration.getLocale()

获取应用当前的语言和地区。默认与系统的语言和地区同步。

  • 返回值
参数名 类型 说明
language string 语言。例如:zh。
countryOrRegion string 国家或地区。例如:CN。
  • 示例
const localeInfo = configuration.getLocale();
console.info(localeInfo.language);