我想在路由 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){
}
});
这样做的正确方法是什么?谁能指导我朝着正确的方向前进?谢谢。