8

我正在尝试使用离子原生插件geolocationionic 4但出现此错误:

编译失败。

./node_modules/@ionic-native/geolocation/index.js 未找到模块:错误:无法解析“C:\Projects\ionic\prayers\node_modules\@ionic-native\geolocation”中的“rxjs/Observable”

这是我的依赖项:

"dependencies": {
    "@angular/common": "6.0.9",
    "@angular/core": "6.0.9",
    "@angular/forms": "6.0.9",
    "@angular/http": "6.0.9",
    "@angular/platform-browser": "6.0.9",
    "@angular/platform-browser-dynamic": "6.0.9",
    "@angular/router": "6.0.9",
    "@ionic-native/core": "5.0.0-beta.14",
    "@ionic-native/geolocation": "^4.11.0",
    "@ionic-native/splash-screen": "5.0.0-beta.14",
    "@ionic-native/status-bar": "5.0.0-beta.14",
    "@ionic/angular": "4.0.0-beta.0",
    "@ionic/ng-toolkit": "1.0.0",
    "@ionic/schematics-angular": "1.0.1",
    "cordova-plugin-geolocation": "^4.0.1",
    "core-js": "^2.5.3",
    "rxjs": "6.2.2",
    "zone.js": "^0.8.26"
  },

这是我使用的代码:-

app.module.ts

import { Geolocation } from '@ionic-native/geolocation';
...
NgModule({
  declarations: [AppComponent],
  entryComponents: [],
  imports: [BrowserModule, IonicModule.forRoot(), AppRoutingModule],
  providers: [
    StatusBar,
    SplashScreen, Geolocation,
    { provide: RouteReuseStrategy, useClass: IonicRouteStrategy }
  ],
  bootstrap: [AppComponent]
})

主页.ts

import { Geolocation } from '@ionic-native/geolocation';
...
constructor(private geolocation: Geolocation) {}
4

2 回答 2

10

您已rxjs 6.2.2安装更改导入语句的位置。

稳定的 ionic-native 仍在使用rxjs 5.x

您可以在此处查看迁移指南。

您可以使用rxjs-compat

npm i rxjs-compat --save

或者回到 5.x 版本。

另一种选择是将@ionic-native/geolocation版本更新到5.0.0-beta14

像您的其他离子原生插件一样,因为根据package.json,它应该使用 rxjs 6.x

npm i --save @ionic-native/geolocation@5.0.0-beta.14
于 2018-08-01T07:45:02.753 回答
2

我遇到了同样的问题,升级Geolocation到时5.0.0-beta.14我还必须将导入路径更新为:

import { Geolocation } from "@ionic-native/geolocation/ngx";

OBS:对于其他导入,例如UniqueDeviceID我还必须将/ngx后缀添加到导入路径。
我认为由于 Angular 版本 6 需要这个后缀。

于 2018-08-08T19:46:41.507 回答