网易云

Ionic实战视频教程(跨平台): https://www.itying.com/goods-1067.html

Flutter实战视频教程(跨平台): https://www.itying.com/goods-1176.html

Globalization

Contents

This plugin obtains information and performs operations specific to the user's locale, language, and timezone.

https://github.com/apache/cordova-plugin-globalization

联系我们?

If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic's experts offer official maintenance, support, and integration help.

Contact Us Today!

Ionic Globalization插件的安装(Installation)

ionic cordova plugin add cordova-plugin-globalization npm install @ionic-native/globalization
Ionic EE comes with fully supported and maintained plugins from the Ionic Team. Learn More or Contact Us
ionic enterprise register --key=YOURPRODUCTKEY npm install @ionic-enterprise/globalization

Ionic Globalization插件支持的平台(Supported Platforms)

  • Amazon Fire OS
  • Android
  • Browser
  • iOS
  • Windows

Ionic Globalization插件的用法(Usage)

import { Globalization } from '@ionic-native/globalization/ngx';

constructor(private globalization: Globalization) { }


...


this.globalization.getPreferredLanguage()
  .then(res => console.log(res))
  .catch(e => console.log(e));