私はこのコードを持っています:
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
.
基本的に、ロケール フォルダーに基づいて国名を生成したいと考えています。