我有这个代码:
locales = __.each results, (value, index, list) ->
locale = value.split("-")[0] # gives me type of string "ru"
console.log typeof locale
console.log cldr.extractLanguageDisplayNames(locale).ru
console.log cldr.extractLanguageDisplayNames(locale).locale
所以这console.log cldr.extractLanguageDisplayNames(locale).ru
有效并返回'русский',但console.log cldr.extractLanguageDisplayNames(locale).locale
我得到undefined
.
基本上我想根据语言环境文件夹生成国家名称。