Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

ng-controller="SomeController as ctrl" not working #10501

Closed
redmagic opened this issue Dec 17, 2014 · 7 comments
Closed

ng-controller="SomeController as ctrl" not working #10501

redmagic opened this issue Dec 17, 2014 · 7 comments

Comments

@redmagic
Copy link

Hi,

It seems the controllerAs directive no longer sets its own instance on the scope with the alias.

Please check this in http://plnkr.co/edit/4nQzmmIhBH2OeDTNW2md?p=preview

@pkozlowski-opensource
Copy link
Member

Yes, this is a breaking change in 1.3.x - you can no longer return arbitrary objects from a controller's constructor function. This would work: http://plnkr.co/edit/nZBRQtTPswTP7kD9cuAC?p=preview

BTW: I find it strange that you are mixing both access to the raw $scope with the controller as syntax - IMO it is easier / more consistent to commit to one of those paradigms.

@caitp
Copy link
Contributor

caitp commented Dec 17, 2014

We could potentially fix it to reinstall isolate scope bindings if a value is returned from the constructor, though, at some performance cost.

@caitp
Copy link
Contributor

caitp commented Dec 17, 2014

My patch for 1.4 sort of makes it slightly easier to do that, so it might be something we could look at doing in a few months

@redmagic
Copy link
Author

Thanks for the clarification.

In the angular docs and the google coding guide methods are still added to a controller through it's prototype though.

Adding methods on this would make inheritance of controllers more difficult wouldn't it?

I hope this gets reverted or improved. I would like my controllers to be instances with methods on their prototype.

@pkozlowski-opensource I mixed styles because the plunker was a quick copy.

@pkozlowski-opensource
Copy link
Member

@redmagic nothing stops you from using prototypes: http://plnkr.co/edit/08CrGBjUMfchLtlAQtWj?p=preview

@redmagic
Copy link
Author

Hi,

I had not thought of that, thanks. So if we put an immediate function around it, it would be more or less like in 1.2.x...http://plnkr.co/edit/VEZIy30Fv9FtMRx6p59m?p=preview

The advantage being not to need a module system for namespacing.

Thanks for following along.

@caitp
Copy link
Contributor

caitp commented Dec 17, 2014

FWIW I've added a patch to work around this in #10502, since people report this as a bug so frequently.

The problem with this is, it depends on some stuff slated for 1.4, so if we land it at all, it won't be for another few months. It likely will also cause memory leaks and performance regressions :(

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants