Failed to instantiate module [$injector:unpr] Unknown provider: $routeProvider

后端 未结 3 545
囚心锁ツ
囚心锁ツ 2020-11-28 20:26

I received this error upon upgrading from AngularJS 1.0.7 to 1.2.0rc1.

3条回答
  •  温柔的废话
    2020-11-28 21:08

    adding to scotty's answer:

    Option 1: Either include this in your JS file:

    
    

    Option 2: or just use the URL to download 'angular-route.min.js' to your local.

    and then (whatever option you choose) add this 'ngRoute' as dependency.

    explained: var app = angular.module('myapp', ['ngRoute']);

    Cheers!!!

提交回复
热议问题