# 应用配置 configuration 3+

# 接口声明

无需声明

# 导入模块

import configuration from '@system.configuration'const configuration = require('@system.configuration')
1

# 接口定义

# configuration.getLocale()

获取应用当前的语言环境。默认使用系统的语言环境,会因为设置或系统语言环境改变而发生变化

# 参数:

# 返回值:

参数名 类型 说明
language String 语言
countryOrRegion String 国家或地区

# 示例:

const locale = configuration.getLocale()
console.log(locale.language)
1
2