在 NodeJS 中加载语言环境
按需加载区域设置。
¥Loading locale on demand.
require('dayjs/locale/de')
// import 'dayjs/locale/de' // ES 2015
dayjs.locale('de') // use locale globally
dayjs().locale('de').format() // use locale in a specific instance
你还可以加载并获取区域设置对象以供进一步使用。
¥You can also load and get the locale object for further use.
var locale_de = require('dayjs/locale/de')
// import locale_de from 'dayjs/locale/de' // ES 2015