所以我是Angular的新手,我一直在閱讀依賴注入的主題。這是在Angular中依賴注入的正確方法嗎?
我添加了這個功能到我的應用程序,但總是收到eslint錯誤:
您應該使用函數語法DI
我看不出什麼錯什麼,我已經聲明。誰能幫忙?
angular.module('tools').config(['$routeProvider', '$locationProvider', function ($routeProvider, $locationProvider) {
$routeProvider.otherwise({ redirectTo : '/404' });
$locationProvider.html5Mode(true)
}
]);
的確切消息我得到的是 「1:1的錯誤,您應該使用函數語法DI角/ DI」
這看起來很適合我。不知道爲什麼你會得到這個錯誤。也許發佈整個錯誤信息,如果有一些細節你錯過了。 – Gustav
使用這個版本比只使用這個功能的版本更好,這樣你在縮小時就不會混亂。 –
對我來說看起來是正確的。 – MoLow