【发布时间】:2017-08-27 00:31:02
【问题描述】:
我正在尝试在我的 Ionic 2 应用中使用 ng2-translate,其中:
this.translateService.setDefaultLang('en');
if (this.platform.is('cordova')) {
if (navigator.globalization) {
navigator.globalization.getPreferredLanguage(function (language) {
但我收到此错误
Typescript Error
Property 'globalization' does not exist on type 'Navigator'.
src/app/app.component.ts
if (this.platform.is('cordova')) {
if (navigator.globalization) {
而且我在这行代码中与window.cordova有相同类型的错误:
if (this.platform.is('cordova') && window.cordova.plugins.Keyboard) {
我应该声明导航器类型还是什么?
【问题讨论】:
-
试试:
npm install @types/cordova --save-dev,可能有帮助... -
不,我仍然有错误
标签: angular typescript ionic2