1

我有这个代码:

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.

基本上我想根据语言环境文件夹生成国家名称。

4

1 回答 1

1

好的,我想通了,应该是:

console.log cldr.extractLanguageDisplayNames(locale)[locale]

于 2013-07-26T09:16:02.127 回答