Angular.js Unknown provider 오류

961 단어
var Todoapp = angular.module("Study", ["ngResource"]).config(function ($routeProvider) {
    $routeProvider.
        when("/", { controller: ListCtrl, templateUrl: "list.html" }).
        otherwise({redirectTo:"/"});
});

var ListCtrl = function ($scope,$location) {
    $scope.test = "testing";
}
위의 문장이 실행될 때 보고합니다.
Uncaught Error: [$injector:modulerr] Failed to instantiate module Study due to: Unknown provider: $routeProvider
이 오류는ngResource를ngRoute로 바꾸면 됩니다
두 번째 질문:
Uncaught Error: [$injector:modulerr] Failed to instantiate module Study due to:Error:
[$injector:modulerr] Failed to instantiate module ngRoute due to:
Error: [$injector:nomod] Module 'ngRoute' is not available! 
You either misspelled the module na......1)
이 오류는 해당 JS:

좋은 웹페이지 즐겨찾기