Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using angular to build HTML controls that interact with a legacy Flex application. All callbacks from the Flex app must be attached to the DOM window.

For example (in AS3)

ExternalInterface.call("save", data);

Will call

window.save = function(data){
    // want to update a service 
    // or dispatch an event here...
}

From within the JS resize function I'd like to dispatch an event that a controller can hear. It seems that creating a service is the way to go. Can you update a service from outside of Angular? Can a controller listen for events from a service? In one experiment (click for fiddle) I did it seems like I can access a service but updating the service's data doesn't get reflected in the view (in the example an <option> should be added to the <select>).

thanks!

share|improve this question
Note that in the jsfiddle above the injector is obtained without targeting an element within the app using var injector = angular.injector(['ng', 'MyApp']);. Doing this will give you a completely new context and a duplicate myService. That means you'll end up with two instances of the service and model and will be adding data to the wrong place. You should instead target an element within the app using angular.element('#ng-app').injector(['ng', 'MyApp']). At this point you can then use $apply to wrap model changes. – Thanh Nguyen Mar 1 at 18:37

3 Answers

up vote 85 down vote accepted

Interop from outside of angular to angular is same as debugging angular application or integrating with third party library.

For any DOM element you can do this:

  • angular.element(domElement).scope() to get the current scope for the element
  • angular.element(domElement).injector() to get the current app injector
  • angular.element(domElement).controller() to get a hold of the ng-controller instance.

From the injector you can get a hold of any service in angular application. Similarly from the scope you can invoke any methods which have been published to it.

Keep in mind that any changes to the angular model or any method invocations on the scope need to be wrapped in $apply() like this:

$scope.$apply(function(){
  // perform any model changes or method invocations here on angular app.
});
share|improve this answer
this works, but I wish there was some way to get from a Module directly to it's scope - is that possible? Having to go back an select the [ng-app] root-node seems backwards when I already have a reference to the Module... – mindplay.dk Jul 25 '12 at 14:00
I've run into the same thing recently. I can get to the dom element so it's not a bit deal to get to the scope, just would make more sense to go via the globally registered module. – Samuel Jul 26 '12 at 10:31
2  
I can't get this to work: I'm calling angular.element(document.getElementById(divName)).scope(), but I am not able to invoke any functions from it, it just returns "undefined" in the console. – Emil Jan 12 at 16:12
works great for me, however I use a class selector, should work fine. – nycynik May 31 at 21:32
@Misko Hevery how do I get to domElement's ng-bind property? – roman m May 31 at 22:56
show 1 more comment

Thanks to the previous post, I can update my model with an asynchronous event.

<div id="control-panel" ng-controller="Filters">
    <ul>
        <li ng-repeat="filter in filters">
        <button type="submit" value="" class="filter_btn">{{filter.name}}</button>
        </li>
    </ul>
</div>

I declare my model

function Filters($scope) {
    $scope.filters = [];
}

And i update my model from outside my scope

ws.onmessage = function (evt) {
    dictt = JSON.parse(evt.data)
    angular.element(document.getElementById('control-panel')).scope().$apply(function(scope){
        scope.filters = dictt.filters;
    });
};
share|improve this answer

Greatest explanation of the concept I've found is situated here: https://groups.google.com/forum/#!msg/angular/kqFrwiysgpA/eB9mNbQzcHwJ

To save you the clicking:

// get Angular scope from the known DOM element
e = document.getElementById('myAngularApp');
scope = angular.element(e).scope();
// update the model with a wrap in $apply(fn) which will refresh the view for us
scope.$apply(function() {
    scope.controllerMethod(val);
}); 
share|improve this answer
2  
The above works when the app and controller co-exist in the same element. For more complex apps that utilize an ng-view directive to a template, you must get the first element within the view, not the DOM element of the entire app. I had to poke around elements with a document.getElementsByClassName('ng-scope'); node list to figure out the correct scope DOM element to grab. – goosemanjack Apr 4 at 18:10
Good point, goosemanjack. – Wiseman Apr 7 at 10:37

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.