更新出厂值时,AngularJS刷新控制器

时间:2017-11-21 14:34:04

标签: javascript html angularjs

目前我正在使用工厂在两个控制器之间传递值。但是我不确定当第一个传递值时如何更新第二个更新。我该怎么办呢?我的控制器看起来像

app.factory('fact', function(){
  return{
    data: {
      begin: '',
      end: ''
    },
    update: function(first, last){
      this.data.begin = first;
      this.data.end: '';
    }
  };
});

app.controller('firstCtrl', function($scope, fact){
  fact.update(10, 12);
});

app.controller('secCtrl', function($scope, $http, fact){
  $http.get("website" + begin + end);
});

0 个答案:

没有答案