1
angular.module("app", ['someServices'])
如果someServices
不存在,會得到錯誤消息:
Uncaught Error: [$injector:modulerr] Failed to instantiate module app due to:
Error: [$injector:modulerr] Failed to instantiate module pascalprecht.translate32 due to:
Error: [$injector:nomod] Module 'someServices' 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.
但現在,我想它的持續運作,這意味着如果加載失敗,則忽略它。
這是否有一些配置?
爲什麼你注入的東西不存在?我沒有明白做那樣的事情。 – tschiela
模塊從其他人的配置中加載。也許這個人犯了一個錯誤:) 當發生這種情況時,我們只是想提醒他,不要讓應用程序停止。 –