Appearance
config 配置中心
js
const configCenter = require('config')get 获取配置值
参数
| 参数 | 类型 | 说明 |
|---|---|---|
| name | string | 名字 |
返回值
string
代码
javascript
console.log('主群: ' + configCenter.get('group.main'))getObject 获取配置值的对象形式
尝试将 value 转换成 object, 失败则为 undefined
参数
| 参数 | 类型 | 说明 |
|---|---|---|
| name | string | 名字 |
返回值
object
代码
javascript
console.log('主群: ' + configCenter.get('group.main'))