我想在路由Provider中调用控制器的特定操作。我该怎么办?
我的代码:
app.config(function ($routeProvider){
$routeProvider
.when('/',
{
templateUrl: '/items/angular_view',
controller : 'myController.actionName'
})
});
app.controller('myController',function ($scope, $http,$routeParams) {
$scope.actionName= function(page){
}
});
这样做的正确方法是什么?任何人都可以引导我走向正确的方向吗?谢谢。