使用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"});
});
答案 0 :(得分:2)
$routeProvider
不再包含在Angular的更新版本中。如果要继续使用,则必须包含angular-route.js
。