最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - TypeError: $location.path is not a function - Stack Overflow

programmeradmin3浏览0评论
<span class="button-icon pull-left" ><i class="ti ti-plus" ng-click="itemOpen()"></i></span>

This is my Html Code.

 $scope.itemOpen=function()
         {
             return $location.path('/ConsultationParameterMaster');
         };

This is my script. And the error is. $location.path is not a function

<span class="button-icon pull-left" ><i class="ti ti-plus" ng-click="itemOpen()"></i></span>

This is my Html Code.

 $scope.itemOpen=function()
         {
             return $location.path('/ConsultationParameterMaster');
         };

This is my script. And the error is. $location.path is not a function

Share Improve this question asked Aug 8, 2016 at 7:41 Prabhagaran PalanisamyPrabhagaran Palanisamy 491 silver badge8 bronze badges 2
  • did you inject $location in your controller? – gyc Commented Aug 8, 2016 at 7:42
  • coreModule.registerController('MedicalRecordsController', ['$rootScope', '$scope', '$sessionStorage', 'Restangular', '$element', '$themeModule', '$filter', '$uibModal', 'gettext', 'focus', '$location', function ($rootScope, $scope, $sessionStorage, Restangular, $element, $theme, $filter, $modal, gettext,$location, – Prabhagaran Palanisamy Commented Aug 8, 2016 at 7:45
Add a ment  | 

5 Answers 5

Reset to default 7

You need to inject $location in your controller if you are going to do this. where you are missing 'focus' as a parameter

app.controller('sampleController', ['$scope','$http','$location', function($scope,$http,$location) {
 $scope.itemOpen=function()
         {
             return $location.path('/ConsultationParameterMaster');
         };
}

EDIT:

According to your ment,You need to arrange the dependencies,

coreModule.registerController('MedicalRecordsController', ['$rootScope', '$scope', '$sessionStorage', 'Restangular', '$element', '$themeModule', '$filter', '$uibModal', 'gettext', 'focus', '$location', function ($rootScope, $scope, $sessionStorage, Restangular, $element, $themeModule, $filter, $uibModal, gettext,focus,$location)

app.controller('ctrl', ['$http','$scope','$location', function($http,$scope,$location) {
 $scope.itemOpen=function()
         {
             return $location.path('/ConsultationParameterMaster');
         };
}
<span class="button-icon pull-left" ><i class="ti ti-plus" ng-click="itemOpen()"></i></span>

Your controller should take $location as an argument. If you forgot to inject $location, you obviously can't use it.

in your javascript, whereever your angular controller is defined, you need to inject dependency for $location, like this:

app.controller('myCtrl', ['$scope', '$location', function($scope, $location) {
    ...
}

Your dependencies aren't lined up correctly. You have 'focus' in the dependency list but not in the parameter list, so your $location is actually focus. That's why it doesn't have a .path() method.

To fix, add focus to your parameters:

$modal, gettext, /*-->*/focus/*<--*/, $location)
发布评论

评论列表(0)

  1. 暂无评论