2017-09-29 124 views
0

我做了什麼:
我使用Visual Studio,所以我加入編輯的package.json文件:
- 科爾多瓦 - 插件,地理位置(內部cordovaPlugins陣列)
- @離子天然/地理位置(內部依賴對象)離子2 - 導入@離子本地/地理位置的原因構建失敗

然後我去通過添加編輯app.module.ts文件:

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

此時,當我嘗試運行瀏覽器模擬我會得到以下錯誤:

Failed to load resource: the server responded with a status of 404 (Not Found) : main.css 
Failed to load resource: the server responded with a status of 404 (Not Found) : main.js 
Failed to load resource: the server responded with a status of 404 (Not Found) : polyfills.js 

而且,我試圖通過寫作來導入一個假包:

import { Geolocation } from '@ionic-native/dfsdfdsf'; 

和我沒有得到任何錯誤(即使,當然,它什麼都不做)。

回答

0

我已經把

"cordova-plugin-geolocation": "^2.4.3" 

在我的package.json的依賴性。

我已經把它放在'cordovaPlugins'下,但它似乎還不夠。
現在它工作正常。