Angularjs 为什么我的角度工厂没有加载?

Angularjs 为什么我的角度工厂没有加载?,angularjs,angularjs-factory,angularjs-module,Angularjs,Angularjs Factory,Angularjs Module,例如 addon.js: (function () { 'use strict'; angular.module('jzAddons', []) .factory('jzThemeFac', function () { return { themes:[ { name: 'none', url: '', margin: '8px', bg: '#ffffff'

例如

addon.js:

(function () {
  'use strict';
 angular.module('jzAddons', [])
  .factory('jzThemeFac', function () {
    return {
      themes:[
        {
          name: 'none',
          url: '',
          margin: '8px',
          bg: '#ffffff'
        },
        {
          name: 'amelia',
          url: '//netdna.bootstrapcdn.com/bootswatch/3.1.0/amelia/bootstrap.min.css',
          margin: '6px',
          bg: '#108a93'
        }
      ],

      changeTheme: function (theme) {
        var oldLink = angular.element('#bootstrapTheme');
        oldLink.remove();
        if (theme.name !== 'none') {
          var head = angular.element('head');
          head.append('<link id="bootstrapTheme" href="' + theme.url + '" rel="stylesheet" media="screen">');
        }
        currentTheme = theme;
      }
    };
  });

})();
在我的身体标签底部,我有:

<script src="addon.js"></script>
<script src="app.js"></script>

您的工厂注入错误,您可以执行以下操作:

app.controller('MainCtrl', ['$scope', 'jzThemeFac', function ($scope, jzThemeFac) {...
或者只是:

app.controller('MainCtrl', function ($scope, jzThemeFac) {
编辑:您还可以移动:

(function () {
    'use strict';  

在文件的开头

您需要记住将$scope注入MainCtrl。所以app.js应该是这样的:

var app = angular.module('example', ['jzAddons']);

(function () {
  'use strict';

  app.controller('MainCtrl', ['$scope', 'jzThemeFac', function ($scope, jzThemeFac) {
    $scope.themes = jzThemeFac.themes;  /* Error comes from this line */
  }]);

})();
(function () {
    'use strict';  
var app = angular.module('example', ['jzAddons']);

(function () {
  'use strict';

  app.controller('MainCtrl', ['$scope', 'jzThemeFac', function ($scope, jzThemeFac) {
    $scope.themes = jzThemeFac.themes;  /* Error comes from this line */
  }]);

})();