0

最近、工場をFROMに変更しました

app.factory('controllerComm', function($rootScope)
{
  var showVforum    = {};
  showVforum.result = false;
  showVforum.prepBroadcast = function(val)
  {
    this.result = val;
    this.broadcastVal();
  }

  showVforum.broadcastVal = function()
  {
    $rootScope.$broadcast('toggleVforum')
  }
  return showVforum;
});

これ

app.factory('controllerComm', ['$rootScope', function($rootScope)
{
  var showVforum    = {};
  showVforum.result = false;
  showVforum.prepBroadcast = function(val)
  {
    this.result = val;
    this.broadcastVal();
  }

  showVforum.broadcastVal = function()
  {
    $rootScope.$broadcast('toggleVforum')
  }
  return showVforum;
}]);

私はJSの縮小のためにこれを行いました。変更する前は、コントローラーの 1 つでこれが機能していました。

$scope.$on('toggleVforum', function()
{
  $scope.isVisible = controllerComm.result;
  $('#vforum').verticalAlign();
  player.play();
});

controllerComm.result工場を変更してから戻っundefinedてきましたが、その理由がわかりません。何か案は?

編集

エラー:

TypeError: Object function e(e,f,i){var j=c.defer(),k=j.promise,l=y(i)&&!i,f=a.defer(function(){try{j.resolve(e())}catch(a){j.reject(a),d(a)}l||b.$apply()},f),i=function(){delete g[k.$$timeoutId]};
k.$$timeoutId=f;g[f]=j;k.then(i,i);return k} has no method 'prepBroadcast'
    at Object.$scope.hideVforum (http://localhost/aventos/resources/js/aventos.js:645:20)
    at http://localhost/aventos/resources/js/angular.min.js:72:251
    at http://localhost/aventos/resources/js/angular.min.js:144:140
    at Object.e.$eval (http://localhost/aventos/resources/js/angular.min.js:88:347)
    at Object.e.$apply (http://localhost/aventos/resources/js/angular.min.js:88:454)
    at HTMLButtonElement.<anonymous> (http://localhost/aventos/resources/js/angular.min.js:144:122)
    at HTMLButtonElement.x.event.dispatch (http://localhost/aventos/resources/js/jquery-1.10.2.min.js:5:14129)
    at HTMLButtonElement.v.handle (http://localhost/aventos/resources/js/jquery-1.10.2.min.js:5:10866) 
4

1 に答える 1

1

結果変数をブロードキャストで渡してみてください。

$rootScope.$broadcast('toggleVForum',{result: this.result});

controllerComm は、リスナーが定義されているコントローラーに注入している可能性がありますが、 $onリスナーでは定義されていません。

$scope.$on('toggleVForum',function(evt,args){
    $scope.isVisible = args.result;
    ...
});
于 2013-08-29T19:10:17.073 に答える