Angularjs: Error: [ng:areq] Argument 'HomeController' is not a function, got undefined

前端 未结 24 1573
抹茶落季
抹茶落季 2020-11-27 12:22

This is my demo using angularjs, for creating a service file, and adding service to a controller.

I have two problems with my demo:

  • One is when I put <
24条回答
  •  栀梦
    栀梦 (楼主)
    2020-11-27 12:42

    Happened to me few times whenever I miss "," between list of injections and function

    app.controller('commonCtrl', ['$scope', '$filter',function($scope,$filter) {
    
    }]);
    

提交回复
热议问题