Javascript 中 ISO 639-1 代码中的语言名称

Language name from ISO 639-1 code in Javascript(Javascript 中 ISO 639-1 代码中的语言名称)
本文介绍了Javascript 中 ISO 639-1 代码中的语言名称的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在建立一个网站,人们可以在其中将语言信息与内容相关联.

I'm building a website where people can associate a language information to content.

网站大量使用 Javascript,与各种元素相关的语言信息在内部被视为 ISO 639-1 代码.

The website uses Javascript heavily and the language information associated to various elements is treated internally as an ISO 639-1 code.

如何以用户的语言显示语言名称列表?

How to show a list of language names - in the language of the user ?

推荐答案

在 new(ish) 国际 API:

There is a native support for this in the new(ish) Intl API:

let languageNames = new Intl.DisplayNames(['en'], {type: 'language'});
languageNames.of('fr');      // "French"
languageNames.of('de');      // "German"
languageNames.of('fr-CA');   // "Canadian French"

这篇关于Javascript 中 ISO 639-1 代码中的语言名称的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Update another component when Formik form changes(当Formik表单更改时更新另一个组件)
Formik validation isSubmitting / isValidating not getting set to true(Formik验证正在提交/isValiating未设置为True)
React Validation Max Range Using Formik(使用Formik的Reaction验证最大范围)
Validation using Yup to check string or number length(使用YUP检查字符串或数字长度的验证)
Updating initialValues prop on Formik Form does not update input value(更新Formik表单上的初始值属性不会更新输入值)
password validation with yup and formik(使用YUP和Formick进行密码验证)