AngularJS - 如何在库更新到1.2后配置$ routeProvider?

时间:2014-01-10 14:10:52

标签: angularjs angular-ui-router

使用1.0.4版本我的代码可以工作,但不再使用1.2.x了。

我的javascript

demoApp.config(function($routeProvider){

$routeProvider.
   when("/",{
        contrller: simpleController,
        templateUrl: "view2.htm",
   }).
   when("/second",{
        controller: simpleController,
        templateUrl: "view2.htm"
   }).
       when("/tird",{
        controller: simpleController,
        templateUrl: "view3.htm"
   }).
   otherwise({redirectTo: "/second"});

});

1 个答案:

答案 0 :(得分:2)

$routeProvider不再包含在Angular的更新版本中。如果要继续使用,则必须包含angular-route.js