34

我正在构建一个电子商务网站(基于 shopify),并且我正在使用多个小型 angularjs 应用程序来处理诸如快速购物车、愿望清单、过滤产品和其他一些较小的项目之类的事情。我最初使用了一个大型应用程序(具有路由和所有功能),但是当我没有完整的 REST API 时,它有点限制。

我想在 Angular 应用程序之间共享一些服务(购物车服务,因此我可以有一个快速添加按钮,该按钮将反映在迷你购物车等中),但我不确定最好的方式(如果有办法)去解决这个问题。仅与服务共享模块不会在应用程序之间保持相同的状态。

我试过了,但我似乎没有更新两个应用程序之间的状态。以下是我尝试使用的 javascript。它也在 jsfiddle 上,附带 html:http: //jsfiddle.net/k9KM7/1/

angular.module('test-service', [])
  .service('TestService', function($window){
    var text = 'Initial state';

    if (!!$window.sharedService){
      return $window.sharedService;
    }

    $window.sharedService = {
      change: function(newText){
        text = newText;
      },
      get: function(){
        return text;
      }
    }

    return $window.sharedService;
  });

angular.module('app1', ['test-service'])
  .controller('App1Ctrl', function($scope, TestService){
    $scope.text = function(){ return TestService.get() }
    $scope.change = function(){ TestService.change('app 1 activated') }
  });

angular.module('app2', ['test-service'])
  .controller('App2Ctrl', function($scope, TestService){
    $scope.text = function(){ return TestService.get() }
    $scope.change = function(){ TestService.change('app 2 activated') }
  });

var app1El = document.getElementById('app1');
var app2El = document.getElementById('app2');

angular.bootstrap(app1El, ['app1', 'test-service']);
angular.bootstrap(app2El, ['app2', 'test-service']);

任何帮助,将不胜感激

4

2 回答 2

25

正在共享,但一个 Angular 应用程序不知道另一个应用程序中的sharedService某些内容已更新,因此它不会启动$digest. 您必须通过调用手动告诉$rootScope每个应用程序启动$digest$rootscope.$apply()

小提琴:http: //jsfiddle.net/pvtpenguin/k9KM7/3/

  angular.module('test-service', [])
  .service('TestService', function($rootScope, $window){
    var text = 'Initial state';
    $window.rootScopes = $window.rootScopes || [];
    $window.rootScopes.push($rootScope);

    if (!!$window.sharedService){
      return $window.sharedService;
    }

    $window.sharedService = {
      change: function(newText){
        text = newText;
        angular.forEach($window.rootScopes, function(scope) {
          if(!scope.$$phase) {
              scope.$apply();
          }
        });
      },
      get: function(){
        return text;
      }
    }

    return $window.sharedService;
  });
于 2013-05-24T00:08:26.707 回答
3

我试图解决类似的问题。在不同 iFrame 中运行的应用程序之间共享工厂。我希望任何$apply()帧中的任何帧都能在所有其他帧中引起摘要循环。允许ng-clicks直接绑定到工厂方法以更新所有其他框架中的视图。我创建了一个处理范围绑定和工厂共享的模块:

点击这里查看 plunkr

只需在每个应用程序中包含该模块:

angular.module('App', ['iFrameBind'])

并更改任何工厂的 return 语句以返回该工厂的共享版本:

return sharedFactory.register('counter', service);

例如

.factory('counter', function (sharedFactory) {

  var service;
  var val = 0;

  function inc() {
    val++;
  }

  function dec() {
    val--;
  }

  function value() {
    return val;
  }

  service = {
    inc: inc,
    dec: dec,
    value: value
  };

  return sharedFactory.register('counter', service);
})

.directive('counter', function (counter) {
  return {
    template: '{{counter.value()}} ' +
              '<button ng-click="counter.inc()">Up</button> ' +
              '<button ng-click="counter.dec()">Down</button> ',
    restrict: 'E',
    link: function postLink(scope) {
      scope.counter = counter;
    }
  };
});

当点击发生在任一帧中时,两个帧中的计数器都会更新

于 2014-09-04T16:50:03.443 回答