简介
country-isocode2
是一个基于 ISO-3166 国家和地区代码的 npm 包,可以非常方便地获取指定国家/地区的代码,任何需要获取国家/地区代码的项目都可以使用该 npm 包。
安装
使用 npm
安装 country-isocode2
:
npm install country-isocode2 --save
使用
在您想要使用该 npm 包的项目中,可以使用以下代码来引入该包:
const countryIsocode2 = require('country-isocode2');
该包为您提供了一些方法来获取特定国家或地区的 ISO-3166 代码。
获取国家或地区代码
const code = countryIsocode2.get('China'); // code -> 'CN'
你可以用国家或地区名称、code 或者其他可识别名称进行查询。
获取所有国家或地区代码
const codes = countryIsocode2.getAll(); // codes -> { AD: 'Andorra', AE: 'United Arab Emirates', AF: 'Afghanistan', ... }
判断国家或地区是否存在
const exists = countryIsocode2.exists('Canada'); // exists -> true
获取国家或地区中文名
const name = countryIsocode2.getName('CN'); // name -> '中国'
获取国家或地区所属洲
const continent = countryIsocode2.getContinent('CN'); // continent -> '亚洲'
示例代码
-- -------------------- ---- ------- ----- --------------- - ---------------------------- ----- ------- - --------------------------- --------- ------------------- ------- ------------- ----- -------- - ------------------------- ------------------ ---------- ---------------------------------- ----- ------ - -------------------------------- ------------------ ------- ------------ ----- ---- - ------------------------------ --------------- ----- ---------- ----- --------- - ----------------------------------- --------------- ---------- ---------------
这样,您就可以使用 country-isocode2
包来获取所需的国家/地区代码了。在您的代码中引入该包将简化您的代码,并提高您在编程过程中的效率。
来源:JavaScript中文网 ,转载请注明来源 https://www.javascriptcn.com/post/60065f89238a385564ab6da0