我正在将AngularJS与c#mvc一起使用。我有一个主页,用户可以在其中输入一些数据,并将其传递给第二个模块,在该模块中,我将使用这些数据进行处理和决策。我必须使用第二个模块中第一个模块中输入或更新的数据。有人可以帮我实现这个目标吗?
希望以下实现可以帮助您有所了解。
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'); } });