我正在使用AngularJS和c#mvc。我有一个主页,用户输入一些数据,应该传递到第二个模块,在那里我使用这些数据进行处理和决策。我必须使用第二个模块中第一个模块中输入或更新的数据。有人可以帮助我如何实现这个目标吗?
答案 0 :(得分:32)
希望以下实施可以帮助您理解。
angular.module('app.A', [])
.service('ServiceA', function() {
this.getValue = function() {
return this.myValue;
};
this.setValue = function(newValue) {
this.myValue = newValue;
}
});
angular.module('app.B', ['app.A'])
.service('ServiceB', function(ServiceA) {
this.getValue = function() {
return ServiceA.getValue();
};
this.setValue = function() {
ServiceA.setValue('New value');
}
});