Uncaught TypeError: angular.lowercase is not a function

后端 未结 8 1533
感动是毒
感动是毒 2021-02-02 08:58

Uncaught TypeError: angular.lowercase is not a function

this error in my angularjs application, and entire application is not running. This

8条回答
  •  长发绾君心
    2021-02-02 09:52

    Angular 1.7.* still has lowercase function but it's renamed to $$lowercase. This is a possible workaround. Buyer beware based on Angular documentation.

    angular.module('MyApp').config(function() {
      angular.lowercase = angular.$$lowercase;  
    });
    

提交回复
热议问题