2016-08-20 50 views
-1

我有兩臺計算機運行相同的代碼從github拉。兩臺電腦都在Ubuntu 16上運行,一切都很好,直到新的依賴關係(ngCsv)被添加到代碼中。從那以後,我得到以下錯誤,但只在一臺機器上:AngularJS錯誤:模塊'ngCsv'不可用

angular.js:4053 Uncaught Error: [$injector:modulerr] Failed to instantiate module lergoApp due to: 
Error: [$injector:modulerr] Failed to instantiate module ngCsv due to: 
Error: [$injector:nomod] Module 'ngCsv' is not available! You either misspelled the module name or forgot to load it. If registering a module ensure that you specify the dependencies as the second argument. 

什麼可能導致此問題?

回答

0

Install ngCsv using npm並在依賴注入中添加ngCsv moduleName。

+0

謝謝埃米爾,但它似乎沒有幫助。我做了npm install --save ngcsv,它將其添加到package.json中 - 錯誤仍然相同。 – Jeffrey

0

該問題已通過刪除整個文件夾並從github克隆得到解決

相關問題