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