Uncaught TypeError: angular.lowercase is not a function

后端 未结 8 1514
感动是毒
感动是毒 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条回答
  •  梦毁少年i
    2021-02-02 09:52

    I am using AngularJS v1.7.5 . In my controller, I have used below code to convert a string into lowercase:

    function myCtrl($scope, $filter)
    {
        var sampleText = "THIS IS TEST";
        var test = $filter('lowercase')(sampleText);
    }
    

    Inject $filter in the controller and use the same to convert to lowercase.

提交回复
热议问题